From 0a5781ae07f2cf0ead49a5676a594e34cbca30a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?An=C3=ADbal=20Lim=C3=B3n?= Date: Mon, 28 Mar 2016 11:25:18 -0600 Subject: [PATCH] tools/rrs_distros.py: Fix distro_check.create_distro_packages_list call MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Now create_distro_packages_list requires d to be passed, this change was done to enable proxy support into create_distro_packages_list function. Signed-off-by: Aníbal Limón --- rrs/tools/rrs_distros.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rrs/tools/rrs_distros.py b/rrs/tools/rrs_distros.py index 9dd564a..46c1058 100755 --- a/rrs/tools/rrs_distros.py +++ b/rrs/tools/rrs_distros.py @@ -106,7 +106,7 @@ if __name__=="__main__": from oe import distro_check logger.debug("Downloading distro's package information ...") - distro_check.create_distro_packages_list(fetchdir) + distro_check.create_distro_packages_list(fetchdir, d) pkglst_dir = os.path.join(fetchdir, "package_lists") RecipeDistro.objects.filter(recipe__layerbranch = layerbranch).delete()