small enhancements

This commit is contained in:
Fierelier 2019-07-22 08:50:50 +02:00
parent 20b19cbd47
commit 44062f2aa9
1 changed files with 2 additions and 1 deletions

View File

@ -116,7 +116,7 @@ def main():
while True:
print("\nthis wine-prefix does not exist yet, would you like to create it? (y/n)")
choice = input().lower()
if (choice == "n"): break
if (choice == "n"): print(""); break
if (choice != "y"): continue
while True:
@ -140,6 +140,7 @@ def main():
except KeyboardInterrupt:
pass
print("\nended wine-session")
return
if __name__ == "__main__":
loadConfig()