Skip to content
This repository was archived by the owner on Jun 16, 2021. It is now read-only.

Commit 3aa6dd1

Browse files
committed
Hide spam
1 parent 751d7ac commit 3aa6dd1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

moinmoin/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@ def check_recent_changes(bot, force=False):
8787
changes_new = r.text.encode('utf-8')
8888
changes_old = cache_read(bot)
8989
if changes_old == "":
90-
bot.say("{} No cached recent changes yet".format(COLOR_PREFIX), announce_channel)
90+
cache_write(bot, changes_new)
91+
return
92+
# bot.say("{} No cached recent changes yet".format(COLOR_PREFIX), announce_channel)
9193

9294
# No change detected, no need for comparisons
9395
if changes_new == changes_old:

0 commit comments

Comments
 (0)