mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-21 21:49:15 +01:00
[SC64][SW] Allow lowercase confirmation (#85)
At least one user fell for this, so we can allow lowercase to reduce support issues
This commit is contained in:
parent
12e16b807a
commit
bbcf041b5a
@ -781,7 +781,7 @@ if __name__ == '__main__':
|
||||
Utils.log()
|
||||
|
||||
try:
|
||||
if (input('Type YES to continue: ') != 'YES'):
|
||||
if (input('Type YES to continue: ').upper() != 'YES'):
|
||||
Utils.die('No confirmation received. Exiting')
|
||||
Utils.log()
|
||||
except KeyboardInterrupt:
|
||||
|
Loading…
Reference in New Issue
Block a user