summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_common.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-11-08 22:26:07 +0100
committerHolger Levsen <holger@layer-acht.org>2016-11-08 22:26:07 +0100
commit70576f582a10d204b13d9216e62d02c1fc1afba3 (patch)
tree4691e99baefd7d6428762c6c8311aa8a7bf6b985 /bin/reproducible_common.py
parent44072e5660de5ad8dfb2a671d1e572f74ebf86c8 (diff)
downloadjenkins.debian.net-70576f582a10d204b13d9216e62d02c1fc1afba3.tar.xz
reproducible Debian: rename meta_pkgset.csv to reproducible_pkgsets.csv
Diffstat (limited to 'bin/reproducible_common.py')
-rwxr-xr-xbin/reproducible_common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py
index 443ef9cf..04552d13 100755
--- a/bin/reproducible_common.py
+++ b/bin/reproducible_common.py
@@ -90,7 +90,7 @@ JENKINS_URL = 'https://jenkins.debian.net'
# META_PKGSET[pkgset_id] = (pkgset_name, pkgset_group)
# csv file columns: (pkgset_id, pkgset_group, pkgset_name)
META_PKGSET = {}
-with open(os.path.join(BIN_PATH, './meta_pkgset.csv'), newline='') as f:
+with open(os.path.join(BIN_PATH, './reproducible_pkgsets.csv'), newline='') as f:
for line in csv.reader(f):
META_PKGSET[int(line[0])] = (line[2], line[1])