diff options
| author | Magnus Hagander | 2015-01-19 20:49:39 +0000 |
|---|---|---|
| committer | Magnus Hagander | 2015-01-19 20:49:39 +0000 |
| commit | 85c76f30f9f04803f57d15aead8822ae701f3a77 (patch) | |
| tree | 9d8fc9fde5fe569b08f60c9678815a484f2d876f /tools | |
| parent | 604a7b0cd1bde04fdfff7412ffc7ab43f05cb452 (diff) | |
Add missing continue
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/commitfest/check_patches_in_archives.py | 1 |
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() |
