From b5603d6956eedc1c6a13b65eb7f117370cfbb3dd Mon Sep 17 00:00:00 2001 From: mdipierro Date: Mon, 22 Oct 2012 18:50:18 -0500 Subject: [PATCH] minor fix in dal for rare condition --- VERSION | 2 +- gluon/dal.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/VERSION b/VERSION index d833dcfe..c301a9a6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.2.1 (2012-10-22 15:07:32) stable +Version 2.2.1 (2012-10-22 18:50:13) stable diff --git a/gluon/dal.py b/gluon/dal.py index e2088dc9..91f05762 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -8613,7 +8613,6 @@ class Field(Expression): if not isinstance(requires, (list, tuple)): requires = [requires] for validator in requires: - print validator (value, error) = validator(value) if error: return (value, error)