Merge pull request #5214 from mdkus/master

Tools: small bug fix
This commit is contained in:
Yorik van Havre
2021-12-01 15:04:25 +01:00
committed by GitHub

View File

@@ -115,6 +115,7 @@ def validateApp(AppName):
sys.exit()
sys.stdout.write("Please enter a name for your application:")
sys.stdout.flush()
AppName = sys.stdin.readline()[:-1]
validateApp(AppName)
createApp(AppName)