Console: New line in the beginning of loop instead of the end

This commit is contained in:
Fierelier 2019-01-06 23:11:27 +01:00
parent 268f3cb0c4
commit f06ca5fc99

View File

@ -330,9 +330,9 @@ def console():
clear() clear()
print("UniversalModloader Console") print("UniversalModloader Console")
print("Version: " +umlVerStr) print("Version: " +umlVerStr)
print("")
while True: while True:
print("")
cmd = input(os.getcwd()+ ">") cmd = input(os.getcwd()+ ">")
if cmd == "exit": if cmd == "exit":
@ -346,7 +346,6 @@ def console():
else: else:
os.system(cmd) os.system(cmd)
print("")
def setupVariables(): def setupVariables():
global appPath global appPath