From fed8922352bbba91f35dd887165624de1a3b3996 Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Wed, 6 Apr 2016 10:16:53 +0000 Subject: reproducible: correctly skip only this package with continue, instead of halting all the processing with a break --- bin/reproducible_json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/reproducible_json.py b/bin/reproducible_json.py index 8d150306..ec2bddb0 100755 --- a/bin/reproducible_json.py +++ b/bin/reproducible_json.py @@ -65,7 +65,7 @@ for row in result: # if version1 > version2, # skip the package results we are currently inspecting if (versionscompared > 0): - break + continue # if version1 < version2, # delete the package results with the older version -- cgit v1.2.3-54-g00ecf