Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3c1b9e commit bc5025bCopy full SHA for bc5025b
1 file changed
lib/utils/google.py
@@ -9,6 +9,7 @@
9
import httplib
10
import re
11
import socket
12
+import urllib
13
import urllib2
14
15
from lib.core.common import getUnicode
@@ -46,7 +47,7 @@ def _parsePage(self, page):
46
47
HTTP addresses
48
"""
49
- retVal = [match.group(1) for match in re.finditer(GOOGLE_REGEX, page, re.I | re.S)]
50
+ retVal = [urllib.unquote(match.group(1)) for match in re.finditer(GOOGLE_REGEX, page, re.I | re.S)]
51
52
return retVal
53
0 commit comments