From 9617097eec27e7527e66c568a9aa2b3ddb58c37f Mon Sep 17 00:00:00 2001 From: Marcelo <mvrozanti@hotmail.com> Date: Sun, 30 Jun 2019 03:36:25 -0300 Subject: [PATCH] fixed compile.py --- compile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.py b/compile.py index 1dc92bf..94b5744 100644 --- a/compile.py +++ b/compile.py @@ -39,7 +39,7 @@ def download_and_install_lfd_uci_wheel(dep): if dep == 'pyAudio': m = re.match('.*<a(.*?)(PyAudio‑......‑cp' + v + '‑cp' + v + 'm‑' + arch_tag + '.whl).*', txt, flags=re.M|re.S) elif dep == 'pyHook': - m = re.match('.*<a(.*?)(pyHook.*?cp' + v + '‑cp' + v + 'm‑' + arch_tag + '.whl).*', txt, flags=re.M|re.S) + m = re.match('.*<a(.*?)(pyHook‑1.5.1‑cp' + v + '‑cp' + v + 'm‑' + arch_tag + '.whl).*', txt, flags=re.M|re.S) wheel_filename = m.group(2).replace('‑', '-').replace('.', '.') m = re.match(' href=\'javascript:;\' onclick=\' javascript:dl\((.*)\);.*', m.group(1), flags=re.M|re.S) m = re.match('(.*), (".*")', m.group(1))