From f06ca5fc99a101d13b3431d59c5c12600e973868 Mon Sep 17 00:00:00 2001 From: Fierelier Date: Sun, 6 Jan 2019 23:11:27 +0100 Subject: [PATCH] Console: New line in the beginning of loop instead of the end --- UniversalModloader.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/UniversalModloader.py b/UniversalModloader.py index 5c4aa30..7193c02 100644 --- a/UniversalModloader.py +++ b/UniversalModloader.py @@ -330,9 +330,9 @@ def console(): clear() print("UniversalModloader Console") print("Version: " +umlVerStr) - print("") while True: + print("") cmd = input(os.getcwd()+ ">") if cmd == "exit": @@ -346,7 +346,6 @@ def console(): else: os.system(cmd) - print("") def setupVariables(): global appPath