summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander2015-01-19 20:49:39 +0000
committerMagnus Hagander2015-01-19 20:49:39 +0000
commit85c76f30f9f04803f57d15aead8822ae701f3a77 (patch)
tree9d8fc9fde5fe569b08f60c9678815a484f2d876f
parent604a7b0cd1bde04fdfff7412ffc7ab43f05cb452 (diff)
Add missing continue
-rwxr-xr-xtools/commitfest/check_patches_in_archives.py1
1 files changed, 1 insertions, 0 deletions
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()