summaryrefslogtreecommitdiff
path: root/cmd2.py
diff options
context:
space:
mode:
Diffstat (limited to 'cmd2.py')
-rwxr-xr-xcmd2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2.py b/cmd2.py
index 3ff0f528..d8c8583a 100755
--- a/cmd2.py
+++ b/cmd2.py
@@ -554,7 +554,7 @@ class Cmd(cmd.Cmd):
traceback.print_exc()
if exception_type is None:
- err = self.colorize("ERROR: {}'\n".format(errmsg), 'red')
+ err = self.colorize("ERROR: {}\n".format(errmsg), 'red')
sys.stderr.write(err)
else:
err = "EXCEPTION of type '{}' occured with message: '{}'\n".format(exception_type, errmsg)