minor update of google regex (that * was a junky one)

This commit is contained in:
Miroslav Stampar 2010-11-19 10:04:29 +00:00
parent e8bef28337
commit df88280681

View File

@ -45,7 +45,7 @@ class Google:
matches = []
regExpr = r'h3 class="?r"?><a href="(http[s]*://.+?)"\sclass="?l"?'
regExpr = r'h3 class="?r"?><a href="(http[s]?://.+?)"\sclass="?l"?'
matches = re.findall(regExpr, page, re.I | re.M)
return matches