Skip to content

Commit

Permalink
Merge branch 'undefined_name' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
jsma committed May 10, 2012
2 parents ca1931d + 075123c commit f555195
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filebrowser/templatetags/fb_tags.py
Expand Up @@ -134,7 +134,7 @@ def selectable(parser, token):
try: try:
tag, filetype, format = token.split_contents() tag, filetype, format = token.split_contents()
except: except:
raise TemplateSyntaxError, "%s tag requires 2 arguments" % token.contents.split()[0] raise template.TemplateSyntaxError, "%s tag requires 2 arguments" % token.contents.split()[0]


return SelectableNode(filetype, format) return SelectableNode(filetype, format)


Expand Down

0 comments on commit f555195

Please sign in to comment.