summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtwitter.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/twitter.py b/twitter.py
index b7088cd..51dd51f 100755
--- a/twitter.py
+++ b/twitter.py
@@ -106,9 +106,9 @@ def parse_tweet(user, tweet, included_tweets, included_media):
title, description, ref_tweet.get("entities", {}).get("urls", [])
)
elif rt["type"] == "replied_to":
- description += "<br/>This was a reply to:<br/>" + rt["id"]
+ description += "<br/>This was a reply to: " + rt["id"]
elif rt["type"] == "quoted":
- description += "<br/>Quoted tweet:<br/>" + rt["text"]
+ description += "<br/>Quoted tweet: " + rt["id"]
else:
description += f"<br/><br/>Unknown reference type: {rt['type']}"