Update utilcmds.py

This commit is contained in:
akhilkpdasan 2017-11-20 00:56:09 +05:30 committed by GitHub
parent 21e731ebeb
commit 740d629b36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -247,7 +247,7 @@ def debug_pyeval(s, file=False, quiet=False):
raise cmdexc.CommandError(str(e))
try:
exec(s)
out = "No Error"
out = "No error"
except Exception:
out = traceback.format_exc()
else: