pep8 1.3.1 cleanup

Change-Id: Ie4f3747b488829b4c05076bc02c377b5da939e10
This commit is contained in:
Joe Heck 2012-09-29 14:59:35 -07:00
parent ff5ea25a9a
commit 6c127df0f3
2 changed files with 2 additions and 2 deletions
keystoneclient

@ -44,7 +44,7 @@ def _word_wrap(string, max_length=0):
if max_length <= 0:
return string
return '\n'.join([string[i:i + max_length] for i in
range(0, len(string), max_length)])
range(0, len(string), max_length)])
def print_dict(d, wrap=0):

@ -411,4 +411,4 @@ def do_endpoint_delete(kc, args):
def do_token_get(kc, args):
"""Display the current user token"""
utils.print_dict(kc.service_catalog.get_token(),
wrap=int(args.wrap))
wrap=int(args.wrap))