diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-09-06 10:13:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-06 10:13:21 -0400 |
commit | 693ec59719edc4384739392a0daea73c922b91c3 (patch) | |
tree | 314675440ee3ccfd3d6076689853731bf6e82d0a /cmd2/cmd2.py | |
parent | d6549c847a40e995dc6d6bcbf8ace1c121c4b0ee (diff) | |
parent | 152a3c276341c7af8875bf116d6f5e1f1271bd2a (diff) | |
download | cmd2-git-693ec59719edc4384739392a0daea73c922b91c3.tar.gz |
Merge pull request #769 from python-cmd2/headless_linux
Fix what is fundamentally a Pyperclip bug on headless Linux systems w…
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 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: |