[Reproducible-commits] [misc] 01/01: Correct case where we use the online reproducible.json file
Chris Lamb
lamby at moszumanska.debian.org
Wed Jul 1 13:42:44 UTC 2015
This is an automated email from the git hooks/post-receive script.
lamby pushed a commit to branch master
in repository misc.
commit 917f61e78ae56d9c806aaac86eff985506992479
Author: Chris Lamb <lamby at debian.org>
Date: Wed Jul 1 14:41:33 2015 +0100
Correct case where we use the online reproducible.json file
Signed-off-by: Chris Lamb <lamby at debian.org>
---
clean-notes | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/clean-notes b/clean-notes
index 36f331a..2f336b3 100755
--- a/clean-notes
+++ b/clean-notes
@@ -177,7 +177,7 @@ def load_reproducible_status():
with open('reproducible.json') as fd:
rstatus = json.load(fd)
except FileNotFoundError:
- rstatus = requests.get(reproducible_json)
+ r = requests.get(reproducible_json)
rstatus = r.json()
for item in rstatus:
pkg = item['package']
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/misc.git
More information about the Reproducible-commits
mailing list