From 58a9a49dc34ac9837f27420279694edbd29f97e2 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 18 Nov 2020 19:28:33 +0000 Subject: [PATCH] Separator after post --- webapp_timeline.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webapp_timeline.py b/webapp_timeline.py index d6293095..617fee84 100644 --- a/webapp_timeline.py +++ b/webapp_timeline.py @@ -581,9 +581,9 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str, if currTlStr: itemCtr += 1 + tlStr += currTlStr if separatorStr: tlStr += separatorStr - tlStr += currTlStr if boxName == 'tlmedia': tlStr += '\n' @@ -698,9 +698,10 @@ def htmlSharesTimeline(translate: {}, pageNumber: int, itemsPerPage: int, showRemoveButton = False if item['actor'] == actor: showRemoveButton = True - timelineStr += separatorStr + \ + timelineStr += \ htmlIndividualShare(actor, item, translate, showContactButton, showRemoveButton) + timelineStr += separatorStr if not lastPage: iconsPath = getIconsWebPath(baseDir)