We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59e30eb commit f84bcdaCopy full SHA for f84bcda
1 file changed
ietf/tests.py
@@ -321,6 +321,11 @@ def testUrlsReachability(self):
321
code = "200"
322
except urllib.HTTPError, e:
323
code = str(e.code)
324
+ except urllib.URLError, e:
325
+ note("Exception for URL '%s'" % url)
326
+ traceback.print_exc()
327
+ self.client = Client()
328
+ code = "500"
329
except httplib.InvalidURL, e:
330
note("Exception for URL '%s'" % url)
331
traceback.print_exc()
0 commit comments