diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-08-05 10:38:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-05 10:38:19 +0200 |
| commit | 15c8bdafeb7f73a07ba8511be7ec4c2653cb854c (patch) | |
| tree | d2314154d6f30c37c1a5f73948ffbb238887dac7 /blog | |
| parent | c794daa394355303085a48779ba1620dd18d74d8 (diff) | |
Lowercased "web" where appropriate.
See https://code.djangoproject.com/ticket/32956
Diffstat (limited to 'blog')
| -rw-r--r-- | blog/feeds.py | 2 |
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] |
