diff options
author | Michal Jarzabek <stiopa@gmail.com> | 2015-05-17 16:22:44 +0200 |
---|---|---|
committer | Michal Jarzabek <stiopa@gmail.com> | 2015-05-17 16:22:44 +0200 |
commit | 3cf3ac39f1713990a063d54559a450c8abf4c2fe (patch) | |
tree | 6c8295b16241af68e27aa8914056484892467192 /src/ceph.in | |
parent | Merge pull request #4436 from BCLibCoop/bclibcoop/rgw-content_length (diff) | |
download | ceph-3cf3ac39f1713990a063d54559a450c8abf4c2fe.tar.xz ceph-3cf3ac39f1713990a063d54559a450c8abf4c2fe.zip |
cryptic error message in ceph interactive mode
Fixes: #11459
Signed-off-by: Michal Jarzabek <stiopa@gmail.com>
Diffstat (limited to 'src/ceph.in')
-rwxr-xr-x | src/ceph.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ceph.in b/src/ceph.in index 317b259c07e..5f7d34c2df6 100755 --- a/src/ceph.in +++ b/src/ceph.in @@ -337,7 +337,7 @@ if sys.stdin.isatty(): def read_input(): while True: line = raw_input(PROMPT).rstrip() - if line in ['q', 'quit', 'Q']: + if line in ['q', 'quit', 'Q', 'exit']: return None if line: return line |