ttemp disable config respect in amprolla_init - amprolla - devuan's apt repo merger HTML git clone git://parazyd.org/amprolla.git DIR Log DIR Files DIR Refs DIR README DIR LICENSE --- DIR commit ba6295d486583ecf13efebf5f1da80a2898f84d6 DIR parent 8cd123722f4b3406c7a955772630e4f7e12ce6fe HTML Author: parazyd <parazyd@dyne.org> Date: Wed, 12 Jul 2017 14:58:23 +0200 ttemp disable config respect in amprolla_init Diffstat: M amprolla_init.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) --- DIR diff --git a/amprolla_init.py b/amprolla_init.py t@@ -73,11 +73,13 @@ def main(): tpl = [] for k in release_contents: # if k.endswith('/binary-armhf/Packages.gz'): - for a in arches: - for c in categories: - if a in k and ("/%s/" % c) in k: - urls = (join(url[0], k), join(url[1], k)) - tpl.append(urls) + # for a in arches: + # for c in categories: + # if a in k and ("/%s/" % c) in k: + # urls = (join(url[0], k), join(url[1], k)) + # tpl.append(urls) + urls = (join(url[0], k), join(url[1], k)) + tpl.append(urls) dlpool = Pool(cpunm) dlpool.map(download, tpl) dlpool.close()