Skip to content

Commit c7965b2

Browse files
committed
.py
1 parent ffae454 commit c7965b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

automaticwebsiteurlscraper.py/webUrlscraper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
if 'href' in str(link) :
2727
templist = str(link).split("href")
2828
index1 = templist[-1].index("\"")
29-
index2 = templist[-1][index1 + 1 : ].index("\"")
29+
index2 = templist[-1][index1 + 1 :].index("\"")
3030
finalLinks.append(templist[-1][index1 : index2 + 3])
3131
print("Here are your final links")
3232
# printing the final completed list

0 commit comments

Comments
 (0)