summaryrefslogtreecommitdiff
path: root/chimere/actions.py
diff options
context:
space:
mode:
Diffstat (limited to 'chimere/actions.py')
-rw-r--r--chimere/actions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/chimere/actions.py b/chimere/actions.py
index 4fe9bff..0363d54 100644
--- a/chimere/actions.py
+++ b/chimere/actions.py
@@ -34,8 +34,8 @@ actions = [(Action('view', '', _('View')), []),
Action('edit-route', 'edit-route/', _('Add a new route'))),
),]
-if 'chimere_rss' in settings.INSTALLED_APPS:
- actions.append((Action('rss', 'rss', _('RSS feeds')), []))
+if settings.CHIMERE_FEEDS:
+ actions.append((Action('rss', 'feeds', _('RSS feeds')), []))
if settings.EMAIL_HOST:
actions.append((Action('contact', 'contact', _('Contact us')), []),)