diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-09-13 16:25:44 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-09-13 16:25:44 -0400 |
commit | 8acd840d0920519af4a862648827b8db0b72af76 (patch) | |
tree | 7da2043f61a2a0570f85173b9e78670c933b38cf /cmd2/cmd2.py | |
parent | d6643affac0ebf963bfcd9c6fa5ac92cd9bd5cf4 (diff) | |
parent | e58b95f2d352d7c02f0e55ff5bd438485cf89174 (diff) | |
download | cmd2-git-8acd840d0920519af4a862648827b8db0b72af76.tar.gz |
Merge branch 'completion_state' of github.com:python-cmd2/cmd2 into completion_state
Diffstat (limited to 'cmd2/cmd2.py')
-rwxr-xr-x | cmd2/cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index f859ad64..e001e75e 100755 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -2056,7 +2056,7 @@ class Cmd(cmd.Cmd): elif statement.output: import tempfile if (not statement.output_to) and (not self._can_clip): - self.perror("Cannot redirect to paste buffer; install 'pyperclip' and re-run to enable") + self.perror("Cannot redirect to paste buffer; missing 'pyperclip' and/or pyperclip dependencies") redir_error = True elif statement.output_to: |