mirror of
https://gitlab.com/jeancf/twoot.git
synced 2024-11-27 22:11:11 +00:00
Do not force the use of brackets
This commit is contained in:
parent
cb798b7b17
commit
95ef8929dd
2
twoot.py
2
twoot.py
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user