aboutsummaryrefslogtreecommitdiff
path: root/src/EventManager.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/EventManager.py')
-rw-r--r--src/EventManager.py4
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)