mirror of
https://github.com/django/django.git
synced 2025-01-12 03:15:47 +00:00
Fixed typo in WidthRatioNode's error.
This commit is contained in:
parent
bbabfdccce
commit
ac8eb82abb
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user