diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-02-24 12:42:17 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-02-24 12:42:17 -0600 |
commit | cac17c156b85b275b76384550261a13b697eb5d6 (patch) | |
tree | 3dcdaa0e30cec309f0b1f58cc9ad9a4e191dacfa /mediagoblin/plugins | |
parent | f6d1d28d455d4cd84e55f7979667f57f64481b0b (diff) | |
download | mediagoblin-cac17c156b85b275b76384550261a13b697eb5d6.tar.lz mediagoblin-cac17c156b85b275b76384550261a13b697eb5d6.tar.xz mediagoblin-cac17c156b85b275b76384550261a13b697eb5d6.zip |
Renaming "extrahead" template hooks to "head".
As Elrond points out, the "extra" is implied by it being a hook!
This commit sponsored by Andrew Fustini. Thanks, Drew!
Diffstat (limited to 'mediagoblin/plugins')
-rw-r--r-- | mediagoblin/plugins/geolocation/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/plugins/geolocation/__init__.py b/mediagoblin/plugins/geolocation/__init__.py index c55e1e6a..5d14590e 100644 --- a/mediagoblin/plugins/geolocation/__init__.py +++ b/mediagoblin/plugins/geolocation/__init__.py @@ -27,7 +27,7 @@ def setup_plugin(): pluginapi.register_template_hooks( {"image_sideinfo": "mediagoblin/plugins/geolocation/map.html", - "image_extrahead": "mediagoblin/plugins/geolocation/map_js_head.html"}) + "image_head": "mediagoblin/plugins/geolocation/map_js_head.html"}) hooks = { |