Reverting reversal, doesn't work
This commit is contained in:
parent
46818f830c
commit
9cbb416868
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ mastodon = Mastodon(access_token = 'kuow_bot_mastodon.secret')
|
||||||
|
|
||||||
r = requests.get(url)
|
r = requests.get(url)
|
||||||
soup = BeautifulSoup(r.content, 'html.parser')
|
soup = BeautifulSoup(r.content, 'html.parser')
|
||||||
for article in soup.find_all("span", class_ = "txt").reverse():
|
for article in soup.find_all("span", class_ = "txt"):
|
||||||
article_link = article.find("a").attrs["href"]
|
article_link = article.find("a").attrs["href"]
|
||||||
|
|
||||||
is_new_article = True
|
is_new_article = True
|
||||||
|
|
Loading…
Reference in a new issue