Skip to content
This repository has been archived by the owner on Mar 29, 2023. It is now read-only.

Commit

Permalink
Fix pyclip import error
Browse files Browse the repository at this point in the history
  • Loading branch information
box-archived committed Oct 17, 2021
1 parent 0924e3d commit fcd6300
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions core.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
checkboxlist_dialog,
clear,
)
import pyclip
import pyperclip

__version__ = "0.3.0"

Expand Down Expand Up @@ -635,7 +635,7 @@ def query_download_url():
).run()
if target_url is None:
try:
target_url = pyclip.paste().decode()
target_url = pyperclip.paste()
except:
target_url = ""

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
prompt-toolkit>=3.0.18
vlivepy==1.1.2
reqWrapper>=0.2.1
pyclip>=0.5.4
pyperclip>=1.8.2
beautifulsoup4>=4.9.3

0 comments on commit fcd6300

Please sign in to comment.