From 98b76987181400aeb332d7b98d9eb53f1aaff2da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Forr=C3=B3?= Date: Sun, 29 Apr 2018 18:32:51 +0200 Subject: [PATCH] Inform about completed sync --- bot.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bot.py b/bot.py index faa9752..512152a 100644 --- a/bot.py +++ b/bot.py @@ -158,6 +158,8 @@ class TwitchBot(irc.bot.SingleServerIRCBot): m = pattern.match(message) if m: action(connection, None, **m.groupdict()) + msg = '@{0}, sync completed'.format(tags['display-name']) + connection.privmsg(self.channel, msg) def add_quote(self, connection, tags, user, id, text, game, date, **kwargs): log.info('Adding quote %s: %s', id, text)