Merge pull request #776 from x4e/master

Fix missing space in setprompt
This commit is contained in:
David Kennedy 2021-04-12 15:29:05 -04:00 committed by GitHub
commit 60ad49a1f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -194,7 +194,7 @@ def setprompt(category, text):
prompt += ":" + bcolors.UNDERL + \
bcolors.DARKCYAN + level + bcolors.ENDC
promptstring = str(prompt)
promptstring = promptstring + "> " + text + ":"
promptstring = promptstring + "> " + text + ": "
return promptstring