diff --git a/fwinebox.py b/fwinebox.py index 604d0ae..ef86e4f 100755 --- a/fwinebox.py +++ b/fwinebox.py @@ -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()