Merge commit '0d719b328fd95504bdc6dabea96d65e5a485677b' into ics-interface

This commit is contained in:
David Taylor
2015-04-20 15:19:25 +01:00
3 changed files with 4 additions and 4 deletions

View File

@@ -29,7 +29,7 @@ class Profile(AbstractUser):
def profile_picture(self):
url = ""
if settings.USE_GRAVATAR or settings.USE_GRAVATAR is None:
url = "https://www.gravatar.com/avatar/" + hashlib.md5(self.email).hexdigest() + "?d=identicon&s=500"
url = "https://www.gravatar.com/avatar/" + hashlib.md5(self.email).hexdigest() + "?d=wavatar&s=500"
return url
@property