Skip to content
Snippets Groups Projects
Commit 4d200420 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Merge pull request #2 from FreddieWitherden/master

Fix broken format string in the prefork module.
parents cba88f45 16b5cad1
No related branches found
No related tags found
No related merge requests found
......@@ -70,8 +70,8 @@ def _recv_packet(sock, who="Process", partner="other end"):
if len(size_bytes) < size_bytes_size:
from warnings import warn
warn("%s exiting upon apparent death of %"
% (who, partner))
warn("%s exiting upon apparent death of %s" % (who, partner))
raise SystemExit
size, = unpack("I", size_bytes)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment