From f36915522dc20af2ada15b78acda101d746f725e Mon Sep 17 00:00:00 2001 From: Massimo Di Pierro Date: Mon, 27 Feb 2012 08:08:45 -0600 Subject: [PATCH] fixed regex->regexp typo --- VERSION | 2 +- gluon/dal.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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):