diff options
| author | Georg Brandl <georg@python.org> | 2009-09-18 09:18:27 (GMT) | 
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2009-09-18 09:18:27 (GMT) | 
| commit | c40e60e5e50f8ac1d157cf524f90d024c6bf31a3 (patch) | |
| tree | 3b1edc36002e4955e22248db5333fc51c43bd8ec /Lib/multiprocessing/managers.py | |
| parent | 097f70881a997f94db995502d859b414f80767a1 (diff) | |
| download | cpython-c40e60e5e50f8ac1d157cf524f90d024c6bf31a3.zip cpython-c40e60e5e50f8ac1d157cf524f90d024c6bf31a3.tar.gz cpython-c40e60e5e50f8ac1d157cf524f90d024c6bf31a3.tar.bz2  | |
#6938: "ident" is always a string, so use a format code which works.
Diffstat (limited to 'Lib/multiprocessing/managers.py')
| -rw-r--r-- | Lib/multiprocessing/managers.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/managers.py b/Lib/multiprocessing/managers.py index fde0e40..8850258 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()  | 
