aboutsummaryrefslogtreecommitdiffstats
path: root/warmachine/connections/irc.py
diff options
context:
space:
mode:
Diffstat (limited to 'warmachine/connections/irc.py')
-rw-r--r--warmachine/connections/irc.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/warmachine/connections/irc.py b/warmachine/connections/irc.py
index 86068d7..542ba62 100644
--- a/warmachine/connections/irc.py
+++ b/warmachine/connections/irc.py
@@ -7,6 +7,7 @@ from ..utils.decorators import memoize
7 7
8class AioIRC(Connection): 8class AioIRC(Connection):
9 def __init__(self, host, port): 9 def __init__(self, host, port):
10 super().__init__()
10 self._loop = asyncio.get_event_loop() 11 self._loop = asyncio.get_event_loop()
11 self.log = logging.getLogger(self.__class__.__name__) 12 self.log = logging.getLogger(self.__class__.__name__)
12 13