From 8a4d0dbc07c2243c5b5ce123ac1ffafb6bfb19cb Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Thu, 31 Jan 2013 12:33:50 -0600 Subject: [PATCH] Switching set syntax to python2.6 compatible --- mediagoblin/tools/template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = []