From d7f17ab2779c250b50fc1247667485573a04c89c Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Tue, 19 May 2009 23:33:19 +0700 Subject: [PATCH] coros: fix to use absolute import in CoroutinePool --- eventlet/coros.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eventlet/coros.py b/eventlet/coros.py index f493434..66e0820 100644 --- a/eventlet/coros.py +++ b/eventlet/coros.py @@ -449,7 +449,7 @@ def execute(func, *args, **kw): def CoroutinePool(*args, **kwargs): - from pools import CoroutinePool + from eventlet.pools import CoroutinePool return CoroutinePool(*args, **kwargs)