aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2018-09-02 19:52:18 +0100
committerGravatar jesopo2018-09-02 19:52:18 +0100
commit3ecd938de2ea83faae32b37989152bccd7fbe6a8 (patch)
treeafdc36dff59402a7b884721194b98e4b8c631ea8
parentAdd virustotal-api-key to bot.conf.example (diff)
signature
IRCLogging -> Logging
-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