Remove spaces

merge-requests/8/head
Bob Mottram 2020-08-16 15:25:31 +01:00
parent d81157bc39
commit aa93ad109d
1 changed files with 2 additions and 2 deletions

View File

@ -3734,7 +3734,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
translate['Show options for this person'] + \ translate['Show options for this person'] + \
'" src="' + avatarUrl + '" ' + avatarPosition + '/></a>\n' '" src="' + avatarUrl + '" ' + avatarPosition + '/></a>\n'
avatarImageInPost = \ avatarImageInPost = \
' <div class="timeline-avatar">' + avatarLink + '</div>\n' ' <div class="timeline-avatar">' + avatarLink.strip() + '</div>\n'
# don't create new html within the bookmarks timeline # don't create new html within the bookmarks timeline
# it should already have been created for the inbox # it should already have been created for the inbox
@ -4208,7 +4208,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
attachmentStr, galleryStr = \ attachmentStr, galleryStr = \
getPostAttachmentsAsHtml(postJsonObject, boxName, translate, getPostAttachmentsAsHtml(postJsonObject, boxName, translate,
isMuted, avatarLink, isMuted, avatarLink.strip(),
replyStr, announceStr, likeStr, replyStr, announceStr, likeStr,
bookmarkStr, deleteStr, muteStr) bookmarkStr, deleteStr, muteStr)