From f7336522b6f110b5097c8c155866c0ce911a1fa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sat, 20 Oct 2018 23:35:55 +0100 Subject: [PATCH] irc_notify: disconnect after sending all messages --- nur/irc_notify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nur/irc_notify.py b/nur/irc_notify.py index 79e85c17e..f826bbfb3 100644 --- a/nur/irc_notify.py +++ b/nur/irc_notify.py @@ -83,4 +83,4 @@ class _send: def main_loop(self, connection: Connection) -> None: for notification in self.notifications: connection.privmsg(self.channel, notification) - connection.quit("Bye") + connection.quit("Bye")