From d1da96a46c9de2352599b59134aa566c487f21cf Mon Sep 17 00:00:00 2001 From: mdipierro Date: Wed, 8 Aug 2012 13:16:24 -0500 Subject: [PATCH] indentantion --- VERSION | 2 +- gluon/tools.py | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/VERSION b/VERSION index 105e8915..85d7de35 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.00.0 (2012-08-08 12:40:01) dev +Version 2.00.0 (2012-08-08 13:16:22) dev diff --git a/gluon/tools.py b/gluon/tools.py index 29c37273..ca03d635 100644 --- a/gluon/tools.py +++ b/gluon/tools.py @@ -2455,10 +2455,11 @@ class Auth(object): def email_reset_password(self,user): reset_password_key = str(int(time.time()))+'-' + web2py_uuid() - if self.settings.mailer.send(to=user.email, - subject=self.messages.reset_password_subject, - message=self.messages.reset_password % \ - dict(key=reset_password_key)): + if self.settings.mailer.send( + to=user.email, + subject=self.messages.reset_password_subject, + message=self.messages.reset_password % \ + dict(key=reset_password_key)): user.update_record(reset_password_key=reset_password_key) return True return False