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 bdb9219 commit 3c110b3Copy full SHA for 3c110b3
1 file changed
lib/utils/crawler.py
@@ -72,7 +72,7 @@ def crawlThread():
72
href = tag.get("href") if hasattr(tag, "get") else tag.group("href")
73
74
if href:
75
- url = urlparse.urljoin(target, href)
+ url = urlparse.urljoin(current, href)
76
77
# flag to know if we are dealing with the same target host
78
_ = reduce(lambda x, y: x == y, map(lambda x: urlparse.urlparse(x).netloc.split(':')[0], (url, target)))
0 commit comments