mirror of
https://gitlab.com/jeancf/twoot.git
synced 2024-11-23 20:11:11 +00:00
Corrected condition on retweet tag
This commit is contained in:
parent
e8f2ede420
commit
608bc7519f
4
twoot.py
4
twoot.py
|
@ -415,7 +415,7 @@ def main(argv):
|
||||||
# Check if retweets must be skipped
|
# Check if retweets must be skipped
|
||||||
if suppress_retweets:
|
if suppress_retweets:
|
||||||
# Check if this tweet is a retweet
|
# Check if this tweet is a retweet
|
||||||
if len(status.select("div.tweet-body > div > div.tweet-header")) != 0:
|
if len(status.select("div.tweet-body > div > div.retweet-header")) != 0:
|
||||||
logging.debug("Retweet ignored per command-line configuration")
|
logging.debug("Retweet ignored per command-line configuration")
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
@ -453,7 +453,7 @@ def main(argv):
|
||||||
tweet_text += 'Replying to ' + replying_to_class[0].a.get_text() + '\n\n'
|
tweet_text += 'Replying to ' + replying_to_class[0].a.get_text() + '\n\n'
|
||||||
|
|
||||||
# Check it the tweet is a retweet from somebody else
|
# Check it the tweet is a retweet from somebody else
|
||||||
if len(status.select("div.tweet-body > div > div.tweet-header")) != 0:
|
if len(status.select("div.tweet-body > div > div.retweet-header")) != 0:
|
||||||
tweet_text = 'RT from ' + author + ' (@' + author_account + ')\n\n'
|
tweet_text = 'RT from ' + author + ' (@' + author_account + ')\n\n'
|
||||||
|
|
||||||
# extract iterator over tweet text contents
|
# extract iterator over tweet text contents
|
||||||
|
|
Loading…
Reference in New Issue
Block a user