1
0
Fork 0

allow exit keyword to be entered case-insensitive

This commit is contained in:
Kevin Matz 2019-11-17 13:03:38 -05:00
parent 92b7be3160
commit b095913334
1 changed files with 1 additions and 1 deletions

View File

@ -96,6 +96,6 @@ if __name__ == '__main__':
except (KeyboardInterrupt, EOFError):
text = 'exit'
print(text)
if text == 'exit':
if text.lower() == 'exit':
break
comment(text)