Fixed typo in WidthRatioNode's error.

This commit is contained in:
Baptiste Mispelon 2012-12-17 10:35:36 +01:00
parent bbabfdccce
commit ac8eb82abb
1 changed files with 1 additions and 1 deletions

View File

@ -453,7 +453,7 @@ class WidthRatioNode(Node):
except VariableDoesNotExist: except VariableDoesNotExist:
return '' return ''
except (ValueError, TypeError): except (ValueError, TypeError):
raise TemplateSyntaxError("widthratio final argument must be an number") raise TemplateSyntaxError("widthratio final argument must be a number")
try: try:
value = float(value) value = float(value)
max_value = float(max_value) max_value = float(max_value)