fixed issue 993, thanks Sherdim

This commit is contained in:
mdipierro
2012-09-11 09:39:13 -05:00
parent 664a0bc812
commit 7356c122de
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.0.8 (2012-09-11 09:26:57) stable
Version 2.0.8 (2012-09-11 09:39:06) stable
+1 -1
View File
@@ -1410,7 +1410,7 @@ class SQLFORM(FORM):
type(''): ('string', None),
type(True): ('boolean', None),
type(1): ('integer', IS_INT_IN_RANGE(-1e12,+1e12)),
type(1.0): ('double', IS_INT_IN_RANGE(-1e12,+1e12)),
type(1.0): ('double', IS_FLOAT_IN_RANGE()),
type([]): ('list:string', None),
type(datetime.date.today()): ('date', IS_DATE()),
type(datetime.datetime.today()): ('datetime', IS_DATETIME())