Fixed quit function.

This commit is contained in:
Jeremy Fincher 2003-05-27 20:07:58 +00:00
parent 82c2a83c91
commit 9b56122a8e
1 changed files with 1 additions and 1 deletions

View File

@ -61,4 +61,4 @@ def ny(prompt):
return expect(prompt, ['n', 'y'])
def quit(prompt):
return anything(prompt) in ('q', 'quit')
return anything(prompt).lower() in ('q', 'quit')