aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--IRCBot.py4
-rw-r--r--Logging.py (renamed from IRCLogging.py)0
2 files changed, 2 insertions, 2 deletions
diff --git a/IRCBot.py b/IRCBot.py
index 5a5ed286..75751e91 100644
--- a/IRCBot.py
+++ b/IRCBot.py
@@ -1,6 +1,6 @@
import os, select, sys, threading, time, traceback, uuid
-import EventManager, IRCLineHandler, IRCLogging, IRCServer
+import EventManager, IRCLineHandler, IRCServer, Logging
import ModuleManager, Timer
class Bot(object):
@@ -15,7 +15,7 @@ class Bot(object):
self.poll = select.epoll()
self._events = EventManager.EventHook(self)
self.modules = ModuleManager.ModuleManager(self, self._events)
- self.log = IRCLogging.Log(self)
+ self.log = Logging.Log(self)
self.line_handler = IRCLineHandler.LineHandler(self, self._events)
self.timers = []
self._events.on("timer").on("reconnect").hook(self.reconnect)
diff --git a/IRCLogging.py b/Logging.py
index c2fbde1c..c2fbde1c 100644
--- a/IRCLogging.py
+++ b/Logging.py