From 8016d9ad5ac06521b661ae9cfeac0ce4bc64c9dc Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Sun, 28 Dec 2014 09:26:40 +0200 Subject: [PATCH] fix download --- slpkg/queue.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slpkg/queue.py b/slpkg/queue.py index 8c0662fa..b5977914 100644 --- a/slpkg/queue.py +++ b/slpkg/queue.py @@ -146,9 +146,9 @@ class QueuePkgs(object): sources = [] os.chdir(build_path) script = sbo_dwn.split("/")[-1] - Download(build_path, sbo_dwn).start() + Download(build_path, sbo_dwn.split()).start() for src in source_dwn: - Download(build_path, src).start() + Download(build_path, src.split()).start() sources.append(src.split("/")[-1]) BuildPackage(script, sources, build_path).build() else: