From 9d4cb09fdf8db1c245484c2833efe241ed6a69bc Mon Sep 17 00:00:00 2001 From: mdipierro Date: Tue, 3 Dec 2013 09:32:42 -0600 Subject: [PATCH] fixed typo, thanks Dean --- VERSION | 2 +- gluon/tools.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 3771e4c1..c4e73ede 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.8.2-stable+timestamp.2013.12.03.00.40.46 +Version 2.8.2-stable+timestamp.2013.12.03.09.31.36 diff --git a/gluon/tools.py b/gluon/tools.py index afb258f8..d4fa20f8 100644 --- a/gluon/tools.py +++ b/gluon/tools.py @@ -2915,7 +2915,7 @@ class Auth(object): formname='reset_password', dbio=False, onvalidation=onvalidation, hideerror=self.settings.hideerror): - user = table_user(**{userfield:form.vars.get(userlfield)}) + user = table_user(**{userfield:form.vars.get(userfield)}) if not user: session.flash = self.messages['invalid_%s' % userfield] redirect(self.url(args=request.args),