summaryrefslogtreecommitdiff
path: root/cmd2/cmd2.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-06-25 16:02:01 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-06-25 16:02:01 -0400
commit1be669baed037a1b7a0647242532b2867a3b8ba8 (patch)
tree952963e242aeb82737af77d46db749b93910ed00 /cmd2/cmd2.py
parent164c8aa04e46cb36e00e63b7bcbf361dd8b0f2dc (diff)
downloadcmd2-git-1be669baed037a1b7a0647242532b2867a3b8ba8.tar.gz
Removed end argument from style_message
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r--cmd2/cmd2.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py
index 48390861..eb745da5 100644
--- a/cmd2/cmd2.py
+++ b/cmd2/cmd2.py
@@ -601,7 +601,7 @@ class Cmd(cmd.Cmd):
"""
if msg is not None and msg != '':
try:
- final_msg = utils.style_message(msg, end=end, fg=fg, bg=bg)
+ final_msg = utils.style_message(msg, fg=fg, bg=bg) + end
self._decolorized_write(self.stdout, final_msg)
except BrokenPipeError:
# This occurs if a command's output is being piped to another
@@ -621,7 +621,7 @@ class Cmd(cmd.Cmd):
:param bg: (optional) Background color. Accepts color names like 'red' or 'blue'
"""
if msg is not None and msg != '':
- err_msg = utils.style_message(msg, end=end, fg=fg, bg=bg)
+ err_msg = utils.style_message(msg, fg=fg, bg=bg) + end
self._decolorized_write(sys.stderr, err_msg)
def pexcept(self, msg: Any, end: str = '\n', fg: str = 'lightred', bg: str = '') -> None:
@@ -641,12 +641,12 @@ class Cmd(cmd.Cmd):
else:
err_msg = msg
- err_msg = utils.style_message(err_msg, end=end, fg=fg, bg=bg)
+ err_msg = utils.style_message(err_msg, fg=fg, bg=bg) + end
self._decolorized_write(sys.stderr, err_msg)
if not self.debug:
warning = "To enable full traceback, run the following command: 'set debug true'"
- warning = utils.style_message(warning, fg="lightyellow")
+ warning = utils.style_message(warning, fg="lightyellow") + end
self._decolorized_write(sys.stderr, warning)
def pfeedback(self, msg: str) -> None: