Fixed bug in [1443] -- a decorator call was left in

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1444 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-11-26 23:07:09 +00:00
parent 3ede006fc9
commit ac91a22ec2
1 changed files with 1 additions and 1 deletions

View File

@ -752,7 +752,7 @@ def templatetag(parser, token):
return TemplateTagNode(tag) return TemplateTagNode(tag)
templatetag = register.tag(templatetag) templatetag = register.tag(templatetag)
@register.tag #@register.tag
def widthratio(parser, token): def widthratio(parser, token):
""" """
For creating bar charts and such, this tag calculates the ratio of a given For creating bar charts and such, this tag calculates the ratio of a given