Fixed quit function.

This commit is contained in:
Jeremy Fincher 2003-05-27 20:06:05 +00:00
parent 1e910d3948
commit 82c2a83c91
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) not in ('q', 'quit')
return anything(prompt) in ('q', 'quit')