Skip to content
This repository has been archived by the owner on Aug 4, 2020. It is now read-only.

Commit

Permalink
fixed compile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mvrozanti committed Jun 30, 2019
1 parent 35af536 commit 9617097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def download_and_install_lfd_uci_wheel(dep):
if dep == 'pyAudio':
m = re.match('.*<a(.*?)(PyAudio&#8209;.&#46;.&#46;..&#8209;cp' + v + '&#8209;cp' + v + 'm&#8209;' + arch_tag + '&#46;whl).*', txt, flags=re.M|re.S)
elif dep == 'pyHook':
m = re.match('.*<a(.*?)(pyHook.*?cp' + v + '&#8209;cp' + v + 'm&#8209;' + arch_tag + '&#46;whl).*', txt, flags=re.M|re.S)
m = re.match('.*<a(.*?)(pyHook&#8209;1&#46;5&#46;1&#8209;cp' + v + '&#8209;cp' + v + 'm&#8209;' + arch_tag + '&#46;whl).*', txt, flags=re.M|re.S)
wheel_filename = m.group(2).replace('&#8209;', '-').replace('&#46;', '.')
m = re.match(' href=\'javascript:;\' onclick=\'&nbsp;javascript:dl\((.*)\);.*', m.group(1), flags=re.M|re.S)
m = re.match('(.*), (".*")', m.group(1))
Expand Down

0 comments on commit 9617097

Please sign in to comment.