From 2119b68610278dcfee299941b6e4b4cfdedd16fe 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 --- 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 05b27b3a6..3cb8ffcf4 100644 --- a/neutronclient/v2_0/client.py +++ b/neutronclient/v2_0/client.py @@ -1715,7 +1715,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)