Browse Source

Add missing parens

Ask Solem 15 years ago
parent
commit
665f278601
1 changed files with 1 additions and 1 deletions
  1. 1 1
      celery/pool.py

+ 1 - 1
celery/pool.py

@@ -112,7 +112,7 @@ class DynamicPool(Pool):
         self._pool.append(w)
         self.logger.debug(
             "DynamicPool: Started pool worker %s (PID: %s, Poolsize: %d)" %(
-                w.name, w.pid, len(self._pool))
+                w.name, w.pid, len(self._pool)))
 
     def grow(self, size=1):
         """Add workers to the pool.