Преглед изворни кода

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

Ask Solem пре 16 година
родитељ
комит
efcbe6bd53
1 измењених фајлова са 1 додато и 1 уклоњено
  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):