Skip to content

Commit

Permalink
adding https to example urls to fix redirects error
Browse files Browse the repository at this point in the history
  • Loading branch information
richrboo committed Jan 2, 2024
1 parent a8552a5 commit 1d79e03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions badger_os/examples/news.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
import badger_os

# URLS to use (Entertainment, Science and Technology)
URL = ["http://feeds.bbci.co.uk/news/entertainment_and_arts/rss.xml",
"http://feeds.bbci.co.uk/news/science_and_environment/rss.xml",
"http://feeds.bbci.co.uk/news/technology/rss.xml"]
URL = ["https://feeds.bbci.co.uk/news/entertainment_and_arts/rss.xml",
"https://feeds.bbci.co.uk/news/science_and_environment/rss.xml",
"https://feeds.bbci.co.uk/news/technology/rss.xml"]

code = qrcode.QRCode()

Expand Down

0 comments on commit 1d79e03

Please sign in to comment.