Skip to content

Commit

Permalink
Merge pull request #68 from richrboo/fix_rss_examples_with_https
Browse files Browse the repository at this point in the history
adding https to example urls to fix redirects error
  • Loading branch information
helgibbons authored Jan 3, 2024
2 parents a8552a5 + 1d79e03 commit 9b6acf2
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 9b6acf2

Please sign in to comment.