Do not force the use of brackets

This commit is contained in:
jeancf 2023-06-29 17:05:15 +02:00
parent cb798b7b17
commit 95ef8929dd

View File

@ -984,7 +984,7 @@ def main(argv):
# Add timestamp to the "Original Tweet" line # Add timestamp to the "Original Tweet" line
if TOML['options']['tweet_time_format'] != "": if TOML['options']['tweet_time_format'] != "":
tweet_text += ' (' + datetime.strftime(timestamp, TOML['options']['tweet_time_format']) + ')' tweet_text += ' ' + datetime.strftime(timestamp, TOML['options']['tweet_time_format'])
# If no media was specifically added in the tweet, try to get the first picture # If no media was specifically added in the tweet, try to get the first picture
# with "twitter:image" meta tag in first linked page in tweet text # with "twitter:image" meta tag in first linked page in tweet text