diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-09-07 10:16:21 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-09-07 10:16:21 -0400 |
commit | e58b95f2d352d7c02f0e55ff5bd438485cf89174 (patch) | |
tree | 1c73b6bef88cfd44ade5787c24c4ec16e5c888f7 /cmd2/cmd2.py | |
parent | 294d911f3625e8c6f97937cdce964a2ce340aecd (diff) | |
parent | 693ec59719edc4384739392a0daea73c922b91c3 (diff) | |
download | cmd2-git-e58b95f2d352d7c02f0e55ff5bd438485cf89174.tar.gz |
Merge branch 'master' 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 900a4c75..c7b759c1 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: |