home · contact · privacy
Add timeout to urlopen().
[plomlombot-irc.git] / plomlombot.py
index cf6bae90864be27ec6a750876b72070e36287774..36228f31b2ccafe949d381958169077a9e6bf77a 100644 (file)
@@ -75,7 +75,7 @@ def url_check(msg):
     matches = re.findall("(https?://[^\s]+)", msg)
     for i in range(len(matches)):
         url = matches[i]
     matches = re.findall("(https?://[^\s]+)", msg)
     for i in range(len(matches)):
         url = matches[i]
-        webpage = urllib.request.urlopen(url)
+        webpage = urllib.request.urlopen(url, timeout=15)
         content_type = webpage.info().get_content_type()
         charset = webpage.info().get_content_charset()
         if not charset or not content_type in ('text/html', 'text/xml',
         content_type = webpage.info().get_content_type()
         charset = webpage.info().get_content_charset()
         if not charset or not content_type in ('text/html', 'text/xml',