#6938: "ident" is always a string, so use a format code which works.
This commit is contained in:
parent
097f70881a
commit
c40e60e5e5
|
@ -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()
|
||||
|
||||
|
|
Loading…
Reference in New Issue