summaryrefslogtreecommitdiff
path: root/keystoneclient/utils.py
diff options
context:
space:
mode:
authorDirk Mueller <dirk@dmllr.de>2013-07-02 10:07:49 +0200
committerDirk Mueller <dirk@dmllr.de>2013-07-12 09:36:07 +0200
commitf2ad113d1c65e94a3a9f4b1f53c9ab4b0dd01727 (patch)
treeebde2e7a2c874a3feaa9d6dd0e819426544b344b /keystoneclient/utils.py
parent8b40f573384a29751bd1883156023820c6994b51 (diff)
downloadpython-keystoneclient-f2ad113d1c65e94a3a9f4b1f53c9ab4b0dd01727.tar.gz
Fix and enable gating on H402
Docstring summaries need punctuation. Change-Id: I1b740c13d5fedf9a625ca0807c908f651ee08406
Diffstat (limited to 'keystoneclient/utils.py')
-rw-r--r--keystoneclient/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystoneclient/utils.py b/keystoneclient/utils.py
index 8769456..f09e76e 100644
--- a/keystoneclient/utils.py
+++ b/keystoneclient/utils.py
@@ -46,7 +46,7 @@ def print_list(objs, fields, formatters={}, order_by=None):
def _word_wrap(string, max_length=0):
- """wrap long strings to be no longer then max_length"""
+ """wrap long strings to be no longer then max_length."""
if max_length <= 0:
return string
return '\n'.join([string[i:i + max_length] for i in