From: YAMAMOTO Takashi Date: Wed, 16 Sep 2015 04:20:51 +0000 (+0900) Subject: ovsdb: Fix a few docstring X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=e6292fcdd6262434a7b713ad8802db6bc8a6d3dc;p=openstack-build%2Fneutron-build.git ovsdb: Fix a few docstring Change-Id: I53e1e21655b28fe5da60e58aeeb7cbbd103ae014 --- 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 """