summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoahY <yuttadhammo@yahoo.com>2011-07-26 23:06:20 +0530
committerNoahY <yuttadhammo@yahoo.com>2011-07-26 23:06:20 +0530
commitff29d6d0e737b280d14dbc929991832405a0863d (patch)
tree2739a4de02dd0d21a8dc0267c13d7ed48b3a5821
parentb661ecad21f21e57dff8fe71e4318b9763604454 (diff)
downloadaskbot-ff29d6d0e737b280d14dbc929991832405a0863d.tar.gz
askbot-ff29d6d0e737b280d14dbc929991832405a0863d.tar.bz2
askbot-ff29d6d0e737b280d14dbc929991832405a0863d.zip
fixed gravatar error
-rw-r--r--askbot/models/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/models/__init__.py b/askbot/models/__init__.py
index 02ca99c1..a5735831 100644
--- a/askbot/models/__init__.py
+++ b/askbot/models/__init__.py
@@ -110,7 +110,7 @@ def user_get_gravatar_url(self, size):
"""
return GRAVATAR_TEMPLATE % {
'gravatar': self.gravatar,
- 'type': askbot_settings.DEFAULT_GRAVATAR
+ 'type': askbot_settings.DEFAULT_GRAVATAR,
'size': size,
}