Commit ac8eb82a authored by Baptiste Mispelon's avatar Baptiste Mispelon
Browse files

Fixed typo in WidthRatioNode's error.

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