summaryrefslogtreecommitdiff
path: root/Lib/multiprocessing
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-09-18 09:18:27 +0000
committerGeorg Brandl <georg@python.org>2009-09-18 09:18:27 +0000
commitb28bd6a258208009f7e1c2ffcf3dbb6bdca145fb (patch)
tree5752330416d86e189bc6c070e6c56c843e8fb447 /Lib/multiprocessing
parent898d313b24e45accd7ea54e3a8e99b21f60bee16 (diff)
downloadcpython-b28bd6a258208009f7e1c2ffcf3dbb6bdca145fb.tar.gz
#6938: "ident" is always a string, so use a format code which works.
Diffstat (limited to 'Lib/multiprocessing')
-rw-r--r--Lib/multiprocessing/managers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/managers.py b/Lib/multiprocessing/managers.py
index fde0e40d37..8850258ce5 100644
--- a/Lib/multiprocessing/managers.py
+++ b/Lib/multiprocessing/managers.py
@@ -410,7 +410,7 @@ class Server(object):
self.id_to_refcount[ident] -= 1
if self.id_to_refcount[ident] == 0:
del self.id_to_obj[ident], self.id_to_refcount[ident]
- util.debug('disposing of obj with id %d', ident)
+ util.debug('disposing of obj with id %r', ident)
finally:
self.mutex.release()