diff --git a/VERSION b/VERSION index e4bcb524..45213619 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 1.99.4 (2012-02-26 16:03:31) stable +Version 1.99.4 (2012-02-27 08:08:05) stable diff --git a/gluon/dal.py b/gluon/dal.py index ad570a5e..41e0728c 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -6925,7 +6925,7 @@ class Expression(object): op = case_sensitive and self.db._adapter.LIKE or self.db._adapter.ILIKE return Query(self.db, op, self, value) - def regex(self, value): + def regexp(self, value): return Query(self.db, self.db._adapter.REGEXP, self, value) def belongs(self, value):