diff options
author | Michele Azzolari <macno@macno.org> | 2012-01-12 00:00:28 +0100 |
---|---|---|
committer | Michele Azzolari <macno@macno.org> | 2012-01-12 00:00:28 +0100 |
commit | 7f251b037bd5207652ca73f556e90b9633786a3c (patch) | |
tree | 0f7cd1ce6baa326d5ae4c835ba4efd0f2b35800c /mediagoblin/user_pages/views.py | |
parent | f502a89b6dad993a44088a84c9f441fdc74189f8 (diff) | |
download | mediagoblin-7f251b037bd5207652ca73f556e90b9633786a3c.tar.lz mediagoblin-7f251b037bd5207652ca73f556e90b9633786a3c.tar.xz mediagoblin-7f251b037bd5207652ca73f556e90b9633786a3c.zip |
As suggested by Elrond, we use only one setting
Diffstat (limited to 'mediagoblin/user_pages/views.py')
-rw-r--r-- | mediagoblin/user_pages/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/user_pages/views.py b/mediagoblin/user_pages/views.py index ee7cfe0f..2d4eac69 100644 --- a/mediagoblin/user_pages/views.py +++ b/mediagoblin/user_pages/views.py @@ -235,7 +235,7 @@ def atom_feed(request): 'rel': 'alternate', 'type': 'text/html' }]; - if mg_globals.app_config["push_enabled"]: + if mg_globals.app_config["push_url"]: atomlinks.append({ 'rel': 'hub', 'href': mg_globals.app_config["push_url"]}) |