From 2143f7e90ac87cc4cb366e045da074432b9b83a6 Mon Sep 17 00:00:00 2001 From: Bobby Date: Sat, 24 Jun 2023 17:42:11 -0400 Subject: Fix weblog URL --- .vscode/settings.json | 6 ++++++ blog/feed.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..3445835b --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "[python]": { + "editor.defaultFormatter": "ms-python.black-formatter" + }, + "python.formatting.provider": "none" +} diff --git a/blog/feed.py b/blog/feed.py index 67389a86..45e002b2 100644 --- a/blog/feed.py +++ b/blog/feed.py @@ -12,7 +12,7 @@ request_domain = settings.DEBUG and 'https://preview.thatcomputerscientist.com' class RSSFeed(Feed): title = 'That Computer Scientist' - link = '/weblog/' + link = '/weblog' description = 'RSS Feed for That Computer Scientist Weblog' feed_type = feedgenerator.Rss201rev2Feed -- cgit v1.2.3