Rmemoved [deleted] and [removed]

This commit is contained in:
Robert 2020-07-14 00:22:04 +02:00
parent bf08f5a139
commit 0dd81abe48

View file

@ -76,6 +76,8 @@ if args.blow is None:
def fetch_comments(comment) -> list:
comment_body = re.sub(r'[\[\(]?https?:\/\/[0-9A-Za-z\/\?#\[\]\)@\.!$\&%\-+,;=]+', '', comment.body)
comment_body = comment_body.replace("[deleted]", "")
comment_body = comment_body.replace("[removed]", "")
if len(comment.replies) == 0:
return [comment_body]