fixed unnecessary escaping in regex, thanks Stefan Pochmann

This commit is contained in:
mdipierro
2013-10-11 22:36:39 -05:00
parent 1356dc1ef0
commit 5551a018ac
2 changed files with 2 additions and 2 deletions

View File

@@ -1 +1 @@
Version 2.7.3-stable+timestamp.2013.10.11.20.42.02
Version 2.7.3-stable+timestamp.2013.10.11.22.35.50

View File

@@ -22,7 +22,7 @@ from cStringIO import StringIO
from gluon.utils import simple_hash, web2py_uuid, DIGEST_ALG_BY_SIZE
from gluon.dal import FieldVirtual, FieldMethod
regex_isint = re.compile('^[\+\-]?\d+$')
regex_isint = re.compile('^[+-]?\d+$')
JSONErrors = (NameError, TypeError, ValueError, AttributeError,
KeyError)