aboutsummaryrefslogtreecommitdiff
path: root/src/IRCBot.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-09-30 19:43:20 +0100
committerGravatar jesopo2018-09-30 19:43:20 +0100
commitc87728a87d9962870d45cd40edffd35b35dfe1c1 (patch)
tree5a8b26cb95508654c9d6581ee4498604da8c2927 /src/IRCBot.py
parentCache._items is a {id: [item, timeout]} dict, not {id: item} (diff)
signature
Move src/IRCLineHandler.py to modules/line_handler.py
Diffstat (limited to 'src/IRCBot.py')
-rw-r--r--src/IRCBot.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/IRCBot.py b/src/IRCBot.py
index 01121978..a776d8d6 100644
--- a/src/IRCBot.py
+++ b/src/IRCBot.py
@@ -1,10 +1,9 @@
import os, select, sys, threading, time, traceback, uuid
-from . import EventManager, Exports, IRCLineHandler, IRCServer, Logging
-from . import ModuleManager
+from . import EventManager, Exports, IRCServer, Logging, ModuleManager
class Bot(object):
def __init__(self, directory, args, cache, config, database, events,
- exports, line_handler, log, modules, timers):
+ exports, log, modules, timers):
self.directory = directory
self.args = args
self.cache = cache
@@ -12,7 +11,6 @@ class Bot(object):
self.database = database
self._events = events
self._exports = exports
- self.line_handler = line_handler
self.log = log
self.modules = modules
self.timers = timers