Indentation

main
Bob Mottram 2020-11-12 23:00:36 +00:00
parent 9114724236
commit 0560878c2c
1 changed files with 11 additions and 11 deletions

View File

@ -280,7 +280,7 @@ def getProfileHeader(baseDir: str, nickname: str, domain: str,
"""The header of the profile screen, containing background
image and avatar
"""
htmlStr = '\n<figure class="profileHeader">\n'
htmlStr = '\n\n <figure class="profileHeader">\n'
htmlStr += ' <a href="/users/' + \
nickname + '/' + defaultTimeline + '" title="' + \
translate['Switch to timeline view'] + '">\n'
@ -302,7 +302,7 @@ def getProfileHeader(baseDir: str, nickname: str, domain: str,
htmlStr += ' <p>' + profileDescriptionShort + '</p>\n'
htmlStr += loginButton
htmlStr += ' </figcaption>\n'
htmlStr += '</figure>\n'
htmlStr += ' </figure>\n\n'
return htmlStr