From 480ea80ed8a10da8657b5a5834525df53f2b0f31 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Sun, 30 Jun 2013 10:47:10 -0500 Subject: [PATCH] fixed typo in basic_auth_realm = basic_auth_realm(), thanks Jonathan --- VERSION | 2 +- gluon/tools.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index f2f83bbb..ee2c404b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.6.0-development+timestamp.2013.06.30.09.18.36 +Version 2.6.0-development+timestamp.2013.06.30.10.46.28 diff --git a/gluon/tools.py b/gluon/tools.py index 8e131114..e2e2bd09 100644 --- a/gluon/tools.py +++ b/gluon/tools.py @@ -1824,7 +1824,7 @@ class Auth(object): basic = current.request.env.http_authorization if basic_auth_realm: if callable(basic_auth_realm): - basic_auth_realm = basic_auth_auth() + basic_auth_realm = basic_auth_realm() elif isinstance(basic_auth_realm, (unicode, str)): basic_realm = unicode(basic_auth_realm) elif basic_auth_realm is True: