From 85c76f30f9f04803f57d15aead8822ae701f3a77 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Mon, 19 Jan 2015 21:49:39 +0100 Subject: [PATCH] Add missing continue --- tools/commitfest/check_patches_in_archives.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/commitfest/check_patches_in_archives.py b/tools/commitfest/check_patches_in_archives.py index 3cbcd5a..2429e27 100755 --- a/tools/commitfest/check_patches_in_archives.py +++ b/tools/commitfest/check_patches_in_archives.py @@ -45,6 +45,7 @@ if __name__ == "__main__": resp = h.getresponse() if resp.status != 200: print "Failed to get %s: %s" % (url, resp.status) + continue contents = resp.read() resp.close() -- 2.39.5