From 30f01a2e79f1a3cc606a8eff31259ff444820c5c Mon Sep 17 00:00:00 2001 From: mdipierro Date: Sat, 7 Sep 2013 22:05:01 -0500 Subject: [PATCH] removed unwanted print statement, thanks Luca --- VERSION | 2 +- gluon/tools.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/VERSION b/VERSION index cea5d049..6342d978 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.6.0-development+timestamp.2013.09.07.21.00.37 +Version 2.6.0-development+timestamp.2013.09.07.22.03.49 diff --git a/gluon/tools.py b/gluon/tools.py index ee5b91d2..8e10d40f 100644 --- a/gluon/tools.py +++ b/gluon/tools.py @@ -1912,7 +1912,6 @@ class Auth(object): keys['first_name'] = keys.get('username', guess) user_id = table_user.insert(**table_user._filter_fields(keys)) user = table_user[user_id] - print user if self.settings.create_user_groups: group_id = self.add_group( self.settings.create_user_groups % user)