summaryrefslogtreecommitdiffstats
path: root/askbot/deps/django_authopenid/views.py
diff options
context:
space:
mode:
authorAdolfo Fitoria <adolfo.fitoria@gmail.com>2013-02-04 09:17:30 -0600
committerAdolfo Fitoria <adolfo.fitoria@gmail.com>2013-02-04 09:17:30 -0600
commitd8be2ffd9c9092108bb2918c816032771d2c0227 (patch)
tree4c7cb7e805ef2c0af30ac41df6063d30b96599ff /askbot/deps/django_authopenid/views.py
parentfcbfbc62323037e8d65fa85e3a82703f254d98f3 (diff)
downloadaskbot-d8be2ffd9c9092108bb2918c816032771d2c0227.tar.gz
askbot-d8be2ffd9c9092108bb2918c816032771d2c0227.tar.bz2
askbot-d8be2ffd9c9092108bb2918c816032771d2c0227.zip
fixed logging formating
Diffstat (limited to 'askbot/deps/django_authopenid/views.py')
-rw-r--r--askbot/deps/django_authopenid/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/deps/django_authopenid/views.py b/askbot/deps/django_authopenid/views.py
index 8f33e8c0..9ddb6414 100644
--- a/askbot/deps/django_authopenid/views.py
+++ b/askbot/deps/django_authopenid/views.py
@@ -99,7 +99,7 @@ def create_authenticated_user_account(
user = User.objects.create_user(username, email)
user_registered.send(None, user=user)
- logging.debug('creating new openid user association for %s')
+ logging.debug('creating new openid user association for %s', username)
if password:
user.set_password(password)