Fix the mistypo of logger str for procline.

This commit is contained in:
zfz 2016-03-09 17:00:20 +08:00
parent 8158a180f3
commit 0492eaef01
1 changed files with 1 additions and 1 deletions

View File

@ -517,7 +517,7 @@ class Worker(object):
self.main_work_horse(job)
else:
self._horse_pid = child_pid
self.procline('Forked {0} at {0}'.format(child_pid, time.time()))
self.procline('Forked {0} at {1}'.format(child_pid, time.time()))
while True:
try:
os.waitpid(child_pid, 0)