diff options
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() |