From 69d58eede2e9bf83aa1ed1d8fcf956efde494726 Mon Sep 17 00:00:00 2001 From: jesopo Date: Wed, 3 Oct 2018 13:22:37 +0100 Subject: Move src/Utils.py in to src/utils/, splitting functionality out in to modules of related functionality --- src/EventManager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/EventManager.py') 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) -- cgit v1.3.1-10-gc9f91