diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-09-04 23:06:55 -0700 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-09-04 23:06:55 -0700 |
commit | c43392601d30df6e79e4a9c044a16b7abe5f6ab1 (patch) | |
tree | f657324bcc5f86d54ecaa8e82fb75a57590ec9e9 /cmd2/cmd2.py | |
parent | 59969dd42694d4b1d11cd1be11adf2d6db41df55 (diff) | |
download | cmd2-git-c43392601d30df6e79e4a9c044a16b7abe5f6ab1.tar.gz |
Fixed unit test failures
Fixed following unit test failures:
- Doc build failure due to Sphinx warnings
- Windows unit test failures related to colorize (hopefully)
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r-- | cmd2/cmd2.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index 0bfc0037..2263d95f 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -567,9 +567,8 @@ class Cmd(cmd.Cmd): been piped to another process and that process terminates before the cmd2 command is finished executing. - :param msg: message to print to current stdout - anything convertible to - a str with '{}'.format() is OK :param end: string appended after the end - of the message if not already present, default a newline + :param msg: message to print to current stdout - anything convertible to a str with '{}'.format() is OK + :param end: string appended after the end of the message if not already present, default a newline """ if msg is not None and msg != '': try: |