0

Fix typo in previous commit

This commit is contained in:
Andrew Chin
2012-05-02 20:19:02 -04:00
parent 5974919973
commit af8aa13615

View File

@@ -113,7 +113,7 @@ def validateNorthDirection(direction):
def validateRerenderprob(s): def validateRerenderprob(s):
val = float(s) val = float(s)
if val =< 0 or val >= 1: if val <= 0 or val >= 1:
raise ValidationException("%r is not a valid rerender probability value. Should be between 0.0 and 1.0." % s) raise ValidationException("%r is not a valid rerender probability value. Should be between 0.0 and 1.0." % s)
return val return val