diff --git a/kallithea/lib/helpers.py b/kallithea/lib/helpers.py
--- a/kallithea/lib/helpers.py
+++ b/kallithea/lib/helpers.py
@@ -850,7 +850,7 @@ def gravatar(email_address, cls='', size
# here it makes sense to use style="width: ..." (instead of, say, a
# stylesheet) because we using this to generate a high-res (retina) size
- tmpl = """
"""
+ tmpl = '
'
# if src is empty then there was no gravatar, so we use a font icon
if not src:
diff --git a/kallithea/public/js/base.js b/kallithea/public/js/base.js
--- a/kallithea/public/js/base.js
+++ b/kallithea/public/js/base.js
@@ -1067,7 +1067,7 @@ var autocompleteHighlightMatch = functio
};
var gravatar = function(link, size, cssclass) {
- var elem = '
'.format(size, link, cssclass);
+ var elem = '
'.format(size, link, cssclass);
if (!link) {
elem = ''.format(size, cssclass);
}