interpret linebreak. fixes #42

linebreak
Carl Chenet 2019-12-30 18:57:02 +01:00
rodzic 3c0412a4ff
commit 9249e00152
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -29,8 +29,10 @@ from feed2toot.tootpost import TootPost
def build_message(entrytosend, tweetformat, rss):
'''populate the rss dict with the new entry'''
tweetwithnotag = tweetformat.format(**entrytosend)
# replace line breaks
tootwithlinebreaks = tweetwithnotag.replace('\\n', '\n')
# remove duplicates from the final tweet
dedup = RemoveDuplicates(tweetwithnotag)
dedup = RemoveDuplicates(tootwithlinebreaks)
# only append hashtags if they exist
# remove last tags if tweet too long
if 'hashtags' in rss: