aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby <[email protected]>2023-06-24 17:42:11 -0400
committerBobby <[email protected]>2023-06-24 17:42:11 -0400
commit2143f7e90ac87cc4cb366e045da074432b9b83a6 (patch)
tree99249266be35985c099d57647bc38ca8794962ab
parent2d4de860c9cbd6882e5ae117f470ccc943b998a9 (diff)
downloadthatcomputerscientist-2143f7e90ac87cc4cb366e045da074432b9b83a6.tar.xz
thatcomputerscientist-2143f7e90ac87cc4cb366e045da074432b9b83a6.zip
Fix weblog URL
-rw-r--r--.vscode/settings.json6
-rw-r--r--blog/feed.py2
2 files changed, 7 insertions, 1 deletions
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