diff --git a/eventlet/coros.py b/eventlet/coros.py index 16217ee..5d3d82e 100644 --- a/eventlet/coros.py +++ b/eventlet/coros.py @@ -47,7 +47,7 @@ def semaphore(count=0, limit=None): if limit is None: return Semaphore(count) else: - return BoundedSemaphore(count, limit) + return BoundedSemaphore(count) class metaphore(object):