coros: fix to use absolute import in CoroutinePool

This commit is contained in:
Denis Bilenko
2009-05-19 23:33:19 +07:00
parent acdb81d113
commit d7f17ab277

View File

@@ -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)