Commit 55a5ebc1f8d4d6f3f656ece5eb9ca60323f5f3f5
1 parent
e2a24538
Exists in
master
and in
39 other branches
Use same protocol to gravatar requests
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
colab/accounts/templatetags/gravatar.py
... | ... | @@ -17,4 +17,4 @@ def gravatar(email, size=80): |
17 | 17 | |
18 | 18 | email_md5 = getattr(email, 'md5', 'anonymous') |
19 | 19 | |
20 | - return u'<img src="http://www.gravatar.com/avatar/{}?s={}&d=mm" height="{}px" width="{}px" />'.format(email_md5, size, size, size) | |
20 | + return u'<img src="www.gravatar.com/avatar/{}?s={}&d=mm" height="{}px" width="{}px" />'.format(email_md5, size, size, size) | ... | ... |