diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-01-31 12:33:50 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-01-31 12:33:50 -0600 |
commit | 8a4d0dbc07c2243c5b5ce123ac1ffafb6bfb19cb (patch) | |
tree | 0b2fcf1a18ce950ecfb3ca4b9088620c03a1d21b /mediagoblin | |
parent | 75621003af128969c322d11aff74ec0c425a9ff4 (diff) | |
download | mediagoblin-8a4d0dbc07c2243c5b5ce123ac1ffafb6bfb19cb.tar.lz mediagoblin-8a4d0dbc07c2243c5b5ce123ac1ffafb6bfb19cb.tar.xz mediagoblin-8a4d0dbc07c2243c5b5ce123ac1ffafb6bfb19cb.zip |
Switching set syntax to python2.6 compatible
Diffstat (limited to 'mediagoblin')
-rw-r--r-- | mediagoblin/tools/template.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/tools/template.py b/mediagoblin/tools/template.py index 5bd20505..a58dd2ca 100644 --- a/mediagoblin/tools/template.py +++ b/mediagoblin/tools/template.py @@ -120,7 +120,7 @@ class TemplateHookExtension(Extension): ... will include all templates hooked into the comment_extras section. """ - tags = {"template_hook"} + tags = set(["template_hook"]) def parse(self, parser): includes = [] |