8000 Merge branch 'rename-challenges' · rakash/python-basics-exercises@bb69aab · GitHub
[go: up one dir, main page]

Skip to content

Commit bb69aab

Browse files
committed
Merge branch 'rename-challenges'
2 parents 0436c62 + d3afc74 commit bb69aab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ch15-interacting-with-the-web/2-use-an-html-parser-to-scrape-websites.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@
2626
# Display the text in the HTML page of each link
2727
link_page = urlopen(link_address)
2828
link_text = link_page.read().decode("utf-8")
29-
link_soup = BeautifulSoup(link_text, s"html.parser")
29+
link_soup = BeautifulSoup(link_text, "html.parser")
3030
print(link_soup.get_text())

0 commit comments

Comments
 (0)
0