Przeglądaj źródła

Add missing parens

Ask Solem 15 lat temu
rodzic
commit
665f278601
1 zmienionych plików z 1 dodań i 1 usunięć
  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.