1
0
mirror of http://aero2k.de/t/repos/urlbot-native.git synced 2017-09-06 15:25:38 +02:00

URLs may have a trailing '>' now

This commit is contained in:
urlbot
2014-07-21 09:59:09 +02:00
parent f9dac725f2
commit 512d082738

View File

@@ -83,7 +83,7 @@ def ratelimit_exceeded():
return False
def extract_url(data):
result = re.findall("(https?://[^\s]+)", data)
result = re.findall("(https?://[^\s>]+)", data)
if result:
for r in result:
if ratelimit_exceeded():