X-Git-Url: https://plomlompom.com/repos/?p=plomlombot-irc.git;a=blobdiff_plain;f=plomlombot.py;h=36228f31b2ccafe949d381958169077a9e6bf77a;hp=cf6bae90864be27ec6a750876b72070e36287774;hb=9a7e2920a88ea32412427c1395b47cdf6d2775cb;hpb=81f2ce0b5a23a87f013f225193de67e85305a0fa diff --git a/plomlombot.py b/plomlombot.py index cf6bae9..36228f3 100644 --- a/plomlombot.py +++ b/plomlombot.py @@ -75,7 +75,7 @@ def url_check(msg): 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',