Bugfix for when profile has no avatar attribute

This commit is contained in:
Les Orchard 2012-12-31 15:49:07 -05:00
Родитель 2e5cd8cdcd
Коммит 3bab1afb3b
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -32,6 +32,8 @@ def user_avatar(user, secure=False, size=256, rating='pg', default=''):
profile = user.get_profile()
if profile.avatar:
return profile.avatar.url
except AttributeError:
pass
except SiteProfileNotAvailable:
pass
except ObjectDoesNotExist: