Fix typo in clipboard.py causing copy bug

Fixes #5
This commit is contained in:
John Helmert
2019-08-03 16:58:31 -05:00
parent 3480faae74
commit 17c8e9e08e
2 changed files with 2 additions and 3 deletions

View File

@@ -20,6 +20,6 @@ def copy(text, cmd=None):
if sys.platform == 'darwin':
cmd = 'pbcopy w'
else: # For Linux, BSD, cygwin, etc.
cmd = 'xclip -selection -clipboard'
cmd = 'xclip -selection clipboard'
_subprocess_copy(text, cmd.split())