From 9e853ccf0cb49247a4fd6efb06d6b9069c1a544a Mon Sep 17 00:00:00 2001 From: linuxdaemon Date: Tue, 14 Nov 2017 16:41:20 -0600 Subject: [PATCH] Properly start the botwide observer on start --- cloudbot/bot.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cloudbot/bot.py b/cloudbot/bot.py index 21582b6db..809eba1f2 100644 --- a/cloudbot/bot.py +++ b/cloudbot/bot.py @@ -218,6 +218,8 @@ def _init_routine(self): if self.config_reloading_enabled: self.config_reloader.start() + self.observer.start() + # Connect to servers yield from asyncio.gather(*[conn.connect() for conn in self.connections.values()], loop=self.loop)