diff options
| author | 2018-10-03 13:22:37 +0100 | |
|---|---|---|
| committer | 2018-10-03 13:22:37 +0100 | |
| commit | 69d58eede2e9bf83aa1ed1d8fcf956efde494726 (patch) | |
| tree | 11aa30f2a357f3be23ad97315dae3df051455cbe /src/EventManager.py | |
| parent | Add a way to not add a user automatically in IRCServer.get_user (diff) | |
| signature | ||
Move src/Utils.py in to src/utils/, splitting functionality out in to modules of
related functionality
Diffstat (limited to 'src/EventManager.py')
| -rw-r--r-- | src/EventManager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/EventManager.py b/src/EventManager.py index e322004e..dbcf7449 100644 --- a/src/EventManager.py +++ b/src/EventManager.py @@ -1,5 +1,5 @@ import itertools, time, traceback -from src import Utils +from src import utils PRIORITY_URGENT = 0 PRIORITY_HIGH = 1 @@ -30,7 +30,7 @@ class EventCallback(object): self.function = function self.priority = priority self.kwargs = kwargs - self.docstring = Utils.parse_docstring(function.__doc__) + self.docstring = utils.parse_docstring(function.__doc__) def call(self, event): return self.function(event) |
