From 59ea5043a55558083899a1d0bad32c95da6e374e Mon Sep 17 00:00:00 2001 From: Christoph Korn Date: Fri, 2 Jan 2015 23:35:48 +0100 Subject: [PATCH] frostwire.py: Fix to reflect upstream tarball naming Since 6.0.0 they changed the naming from frostwire-5.7.7.noarch.tar.gz to frostwire_6.0.3.orig.tar.gz Support both namings in case they change their mind again. --- frostwire.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frostwire.py b/frostwire.py index 1806618..18ecc62 100644 --- a/frostwire.py +++ b/frostwire.py @@ -26,7 +26,7 @@ def download(spiUrl): for dir in dirs: download_dir = DIR_URL+dir data = download(download_dir).split("\n") - tarball_re = re.compile('') + tarball_re = re.compile('') for line in data: search_result = re.search(tarball_re, line) if not search_result: continue