diff options
author | Andreas Jaeger <aj@suse.de> | 2014-08-14 22:55:13 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2014-08-14 22:55:13 +0200 |
commit | ddc5defe5390d24ee81726e418fb74c464438001 (patch) | |
tree | c5d821973425cc7c0c8d59888f103f75f06fd87d /saharaclient/api | |
parent | 1625d6851efbb3545b5915b4a87ef4948e405534 (diff) | |
download | python-saharaclient-ddc5defe5390d24ee81726e418fb74c464438001.tar.gz |
Fix duplicate help strings
Currently:
$ sahara help bash-completion
usage: sahara bash-completion
Prints all of the commands to stdout to support bash completion. Prints
all of the commands and options to stdout so that the sahara.bash_completion
script doesn't have to hard code them.
$ sahara help job-binary-data-create
usage: sahara job-binary-data-create [--file FILE]
Store data in the internal DB. Store data in the internal DB. Use 'swift
upload' instead of this command. Use this command only if Swift is not
available.
Update the strings to avoid duplication.
Change-Id: I4bb692026e1bfc2c210a976f3dfedb550d544f26
Diffstat (limited to 'saharaclient/api')
-rw-r--r-- | saharaclient/api/shell.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/saharaclient/api/shell.py b/saharaclient/api/shell.py index 2728206..2eac129 100644 --- a/saharaclient/api/shell.py +++ b/saharaclient/api/shell.py @@ -561,7 +561,6 @@ def do_job_binary_data_list(cs, args): def do_job_binary_data_create(cs, args): """Store data in the internal DB. - Store data in the internal DB. Use 'swift upload' instead of this command. Use this command only if Swift is not available. """ |