From a460ba422f311022d7c555cf9eeb1aad3d210318 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Fri, 24 Aug 2018 14:46:59 +0200 Subject: [PATCH] Donate CPU: Fix unresolved reference --- tools/donate-cpu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/donate-cpu.py b/tools/donate-cpu.py index 3822b1a11..da6ae3447 100644 --- a/tools/donate-cpu.py +++ b/tools/donate-cpu.py @@ -76,7 +76,7 @@ def scanPackage(workPath, package): tempPath = workPath + '/temp' subprocess.call(['rm', '-rf', tempPath, destfile]) if not wget(package, destfile): - if not wget(filepath, destfile): + if not wget(package, destfile): return None print('Unpacking..') os.mkdir(tempPath)