String contains

merge-requests/6/head
Bob Mottram 2020-02-05 15:22:20 +00:00
parent fad14d0f0c
commit e49e43bb08
1 changed files with 2 additions and 2 deletions

View File

@ -41,9 +41,9 @@ def removeFilter(baseDir: str,nickname: str,domain: str, \
def isTwitterPost(content: str) -> bool:
"""Returns true if the given post content is a retweet or twitter crosspost
"""
if content.contains('/twitter.com') or content.contains('@twitter.com'):
if '/twitter.com' in content or '@twitter.com' in content:
return True
elif content.contains('RT:'):
elif 'RT:' in content:
return True
return False