Browse Source

On some python installations this created a stack overflow, (no idea why)

Ask Solem 16 years ago
parent
commit
efcbe6bd53
1 changed files with 1 additions and 1 deletions
  1. 1 1
      celery/datastructures.py

+ 1 - 1
celery/datastructures.py

@@ -27,7 +27,7 @@ class PositionQueue(UserList):
     def filled(self):
         """Returns the filled slots as a list."""
         return filter(lambda v: not isinstance(v, self.UnfilledPosition),
-                      self)
+                      self.data)
 
         
 class TaskProcessQueue(UserList):