cjbassi / rofi-copyq

Use Rofi to search CopyQ's clipboard history and set the clipboard to the selected snippet
MIT License
29 stars 4 forks source link

add support for python 3.6 #2

Closed thugcee closed 5 years ago

thugcee commented 5 years ago

Python 3.6 doesn't support capture_output in subprocess.run. This option is equivalent to:

from subprocess import PIPE

subprocess.run( ... , stdout=PIPE, stderr=PIPE)