summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkarthik s <ksundara@redhat.com>2015-11-05 16:10:41 +0530
committerIhar Hrachyshka <ihrachys@redhat.com>2016-03-23 16:05:43 +0000
commit74695844db858a8891d202ea4572df9ab1c33f0a (patch)
tree26bc8e49cf4f39cfbdc3e99e35ddba97deb38a71
parentc1701c1d289beed3710b17653e386bb3fbffb0c7 (diff)
downloadpython-neutronclient-74695844db858a8891d202ea4572df9ab1c33f0a.tar.gz
Documentation error in show_bandwidth_limit_rule
Docstring for the function show_bandwidth_limit_rule() is wrong. Change-Id: Ic98e789f17fabe02dc59b3bea8ca96af0ee3bd71 Closes-Bug: #1513418 (cherry picked from commit 2119b68610278dcfee299941b6e4b4cfdedd16fe)
-rw-r--r--neutronclient/v2_0/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/neutronclient/v2_0/client.py b/neutronclient/v2_0/client.py
index 72c280a..fe35244 100644
--- a/neutronclient/v2_0/client.py
+++ b/neutronclient/v2_0/client.py
@@ -1685,7 +1685,7 @@ class Client(ClientBase):
@APIParamsCall
def show_bandwidth_limit_rule(self, rule, policy, body=None):
- """Creates a new bandwidth limit rule."""
+ """Fetches information of a certain bandwidth limit rule."""
return self.get(self.qos_bandwidth_limit_rule_path %
(policy, rule), body=body)