From: Michal Jarzabek Date: Sun, 17 May 2015 14:22:44 +0000 (+0100) Subject: cryptic error message in ceph interactive mode X-Git-Tag: v9.0.2~140^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F4705%2Fhead;p=ceph.git cryptic error message in ceph interactive mode Fixes: #11459 Signed-off-by: Michal Jarzabek --- diff --git a/src/ceph.in b/src/ceph.in index 317b259c07e9..5f7d34c2df6b 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