reset to master, keep working on the dirty-fields-patch in another branch

This commit is contained in:
Florian Schlachter
2010-01-31 18:00:01 +01:00
parent 963a223e7e
commit 73aff806f3
3 changed files with 6 additions and 36 deletions

View File

@@ -71,7 +71,6 @@ class FloatField(BaseField):
return float(value)
def validate(self, value):
if isinstance(value, int): value = float(value)
assert isinstance(value, float)
if self.min_value is not None and value < self.min_value: