Fix for Issue #42

This commit is contained in:
Miroslav Stampar
2012-06-28 13:55:30 +02:00
parent f495cfa139
commit 2a72fcce2b
3 changed files with 5 additions and 5 deletions

View File

@@ -46,7 +46,7 @@ class Google:
HTTP addresses
"""
retVal = re.findall(GOOGLE_REGEX, page, re.I | re.S)
retVal = [match.group(1) for match in re.finditer(GOOGLE_REGEX, page, re.I | re.S)]
return retVal