From e6292fcdd6262434a7b713ad8802db6bc8a6d3dc Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Wed, 16 Sep 2015 13:20:51 +0900 Subject: [PATCH] ovsdb: Fix a few docstring Change-Id: I53e1e21655b28fe5da60e58aeeb7cbbd103ae014 --- neutron/agent/ovsdb/api.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/neutron/agent/ovsdb/api.py b/neutron/agent/ovsdb/api.py index 7dc88d02d..d60b0d841 100644 --- a/neutron/agent/ovsdb/api.py +++ b/neutron/agent/ovsdb/api.py @@ -239,7 +239,7 @@ class API(object): :type records: list of record ids (names/uuids) :param columns: Limit results to only columns, None means all columns :type columns: list of column names or None - :param if_exists: Do not fail if the bridge does not exist + :param if_exists: Do not fail if the record does not exist :type if_exists: bool :returns: :class:`Command` with [{'column', value}, ...] result """ @@ -313,7 +313,7 @@ class API(object): :type bridge: string :param port: The name of the port :type port: string - :param may_exist: Do not fail if bridge already exists + :param may_exist: Do not fail if the port already exists :type may_exist: bool :returns: :class:`Command` with no result """ @@ -326,7 +326,7 @@ class API(object): :type port: string :param bridge: Only delete port if it is attached to this bridge :type bridge: string - :param if_exists: Do not fail if the bridge does not exist + :param if_exists: Do not fail if the port does not exist :type if_exists: bool :returns: :class:`Command` with no result """ -- 2.45.2