diff options
author | 2020-05-29 16:32:39 -0400 | |
---|---|---|
committer | 2020-05-29 16:32:39 -0400 | |
commit | 959d7c7fb928428de9dbd40b43291fb7460206e8 (patch) | |
tree | efc42604d033d4b2f0b56479bbba43f9266c9e7a | |
parent | Merge pull request #966 from python-discord/sebastiaan/help-channels/ratelimits (diff) | |
parent | Merge branch 'master' into patch-1 (diff) |
Merge pull request #965 from Akarys42/patch-1
Ignore response when posting python news
-rw-r--r-- | bot/cogs/python_news.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/cogs/python_news.py b/bot/cogs/python_news.py index d28af4a0b..d15d0371e 100644 --- a/bot/cogs/python_news.py +++ b/bot/cogs/python_news.py @@ -153,6 +153,7 @@ class PythonNews(Cog): if ( thread_information["thread_id"] in existing_news["data"][maillist] + or 'Re: ' in thread_information["subject"] or new_date.date() < date.today() ): continue |