Partially revert 0261f3009cef205c8c3ff79c2d4aaac317342b53

This commit is contained in:
Alberto Planas 2014-11-29 09:57:01 +01:00
parent b9b659a1f3
commit 3a408aaf65

View File

@ -45,10 +45,14 @@ def _check_repo_download(self, request):
toignore = set()
request.downloads = defaultdict(list)
if not request.build_excluded:
arch = 'x86_64'
else:
arch = 'i586'
# XXX TODO - Rewrite the logic here, meanwhile set is to x86_64
if request.build_excluded:
return set()
arch = 'x86_64'
# if not request.build_excluded:
# arch = 'x86_64'
# else:
# arch = 'i586'
ToDownload = namedtuple('ToDownload', ('project', 'repo', 'arch', 'package', 'size'))