summaryrefslogtreecommitdiff
path: root/swiftclient/shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'swiftclient/shell.py')
-rwxr-xr-xswiftclient/shell.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/swiftclient/shell.py b/swiftclient/shell.py
index 9ca28b1..9ea5e95 100755
--- a/swiftclient/shell.py
+++ b/swiftclient/shell.py
@@ -1462,8 +1462,9 @@ def st_bash_completion(parser, args, thread_manager, return_parser=False):
return
else:
fn_commands = [fn for fn in globals().keys()
- if fn.startswith('st_') and not fn.endswith('_options')
- and not fn.endswith('_help')]
+ if fn.startswith('st_') and
+ not fn.endswith('_options') and
+ not fn.endswith('_help')]
subparsers = parser.add_subparsers()
subcommands = {}