Skip to content

Commit

Permalink
cryptic error message in ceph interactive mode
Browse files Browse the repository at this point in the history
Fixes: ceph#11459
Signed-off-by: Michal Jarzabek <[email protected]>
  • Loading branch information
stiopaa1 committed May 17, 2015
1 parent 7ee4a04 commit 3cf3ac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ceph.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3cf3ac3

Please sign in to comment.