summaryrefslogtreecommitdiff
path: root/blog
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2021-08-05 10:38:19 +0200
committerGitHub <noreply@github.com>2021-08-05 10:38:19 +0200
commit15c8bdafeb7f73a07ba8511be7ec4c2653cb854c (patch)
treed2314154d6f30c37c1a5f73948ffbb238887dac7 /blog
parentc794daa394355303085a48779ba1620dd18d74d8 (diff)
Lowercased "web" where appropriate.
See https://code.djangoproject.com/ticket/32956
Diffstat (limited to 'blog')
-rw-r--r--blog/feeds.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/blog/feeds.py b/blog/feeds.py
index 945bc3b2..accf0449 100644
--- a/blog/feeds.py
+++ b/blog/feeds.py
@@ -6,7 +6,7 @@ from .models import Entry
class WeblogEntryFeed(Feed):
title = "The Django weblog"
link = "https://www.djangoproject.com/weblog/"
- description = "Latest news about Django, the Python Web framework."
+ description = "Latest news about Django, the Python web framework."
def items(self):
return Entry.objects.published()[:10]