diff options
| author | Naohiro Tamura <naohirot@jp.fujitsu.com> | 2015-10-14 11:20:39 +0900 |
|---|---|---|
| committer | Naohiro Tamura <naohirot@jp.fujitsu.com> | 2015-10-14 11:20:39 +0900 |
| commit | f013333949ef74fa0340caa3f68e17e3368ccaa5 (patch) | |
| tree | 777a29cb79f1ed85ef3c0e5f0a6a08101dda8ff4 /ironic_python_agent | |
| parent | b6c2eb6ca6aae039982007c791dfd55c29d70417 (diff) | |
| download | ironic-python-agent-f013333949ef74fa0340caa3f68e17e3368ccaa5.tar.gz | |
Add param docstring into the normalize func
This patch adds a missing param docstring into the normalize function
in util.py.
Change-Id: I91ecc0970fc386163657ab521d8cdd898694a426
Partial-bug: 1367915
Diffstat (limited to 'ironic_python_agent')
| -rw-r--r-- | ironic_python_agent/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ironic_python_agent/utils.py b/ironic_python_agent/utils.py index ed8e8e43..6a89b375 100644 --- a/ironic_python_agent/utils.py +++ b/ironic_python_agent/utils.py @@ -218,6 +218,7 @@ def normalize(string): Take a urlencoded value from Ironic and urldecode it. + :param string: a urlencoded string :returns: a normalized version of passed in string """ return parse.unquote(string).lower().strip() |
