Skip to content

Commit b94faed

Browse files
committed
No iteritems on py3.
1 parent c3c98a5 commit b94faed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

celery/concurrency/workhorse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def on_sigchld(self):
190190
elif os.WIFSTOPPED(exit_code):
191191
pending[pid] = os.WSTOPSIG(exit_code)
192192

193-
for pid, exit_code in pending.iteritems():
193+
for pid, exit_code in pending.items():
194194
self.on_worker_exit(pid, exit_code)
195195

196196
def on_worker_exit(self, pid, exit_code):

0 commit comments

Comments
 (0)