From 74695844db858a8891d202ea4572df9ab1c33f0a Mon Sep 17 00:00:00 2001 From: karthik s Date: Thu, 5 Nov 2015 16:10:41 +0530 Subject: [PATCH] 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) --- neutronclient/v2_0/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)