aboutsummaryrefslogtreecommitdiffstats
path: root/warmachine/connections/irc.py
diff options
context:
space:
mode:
authorjason2016-08-18 19:30:35 -0600
committerjason2016-08-18 19:30:35 -0600
commit4518daba36678f52330513ec1fec82a44340fa81 (patch)
treef5a95fa686516f1898c7ec66b44ad2ad583bbc95 /warmachine/connections/irc.py
parenta427cd070d2246264e555b3d4779ebde8acd2e08 (diff)
downloadwarmachine-ng-4518daba36678f52330513ec1fec82a44340fa81.tar.gz
warmachine-ng-4518daba36678f52330513ec1fec82a44340fa81.zip
Remove the hard-coded config file path
- added a dynamic config file path
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