diff options
author | lxf <sng@luxagraf.net> | 2019-05-03 17:38:32 +0000 |
---|---|---|
committer | lxf <sng@luxagraf.net> | 2019-05-03 17:38:32 +0000 |
commit | 99e60b7587a33cc9dea44d7408aff7dd6cc4009d (patch) | |
tree | 0797b9308a1f9a50cf3580c298f72adad06c8dd0 /app/builder/views.py | |
parent | e43cbc1a487b8ea45c05a4b394a7c60ffc4c0ba4 (diff) |
fixed bug in RSS builder
Diffstat (limited to 'app/builder/views.py')
-rw-r--r-- | app/builder/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/builder/views.py b/app/builder/views.py index 3c63b00..0478eb9 100644 --- a/app/builder/views.py +++ b/app/builder/views.py @@ -24,7 +24,7 @@ def do_build(request): context = {'message': 'Writing Sitemap to Disk'} j = BuildSitemap("blog", "Entry") j.build() - if section == 'rss': + if section == 'buildrss': context = {'message': 'Writing RSS feed to Disk'} j = BuildRSS("blog", "Entry") j.build() |