From: Magnus Hagander Date: Mon, 19 Jan 2015 20:49:39 +0000 (+0100) Subject: Add missing continue X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=85c76f30f9f04803f57d15aead8822ae701f3a77;p=pgcommitfest2.git Add missing continue --- 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()