summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2019-09-04 23:53:06 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2019-09-04 23:53:06 -0400
commit152a3c276341c7af8875bf116d6f5e1f1271bd2a (patch)
tree314675440ee3ccfd3d6076689853731bf6e82d0a
parent4e76883966b4f5d33d982041affd2beec67c68b5 (diff)
downloadcmd2-git-152a3c276341c7af8875bf116d6f5e1f1271bd2a.tar.gz
Make pyperclip failure error message more specific
-rwxr-xr-xcmd2/cmd2.py2
-rwxr-xr-xtests/test_cmd2.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py
index 6b509c20..a0a49a51 100755
--- a/cmd2/cmd2.py
+++ b/cmd2/cmd2.py
@@ -2046,7 +2046,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:
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py
index 313b4dee..fc8a1dae 100755
--- a/tests/test_cmd2.py
+++ b/tests/test_cmd2.py
@@ -1332,7 +1332,7 @@ def test_clipboard_failure(base_app, capsys):
# Make sure we got the error output
out, err = capsys.readouterr()
assert out == ''
- assert "Cannot redirect to paste buffer; install 'pyperclip' and re-run to enable" in err
+ assert 'Cannot redirect to paste buffer;' in err and 'pyperclip' in err
class CommandResultApp(cmd2.Cmd):