Add string-representation for Clients
to simplify debug-output
This commit is contained in:
parent
caff246f9a
commit
20d40c8890
|
@ -52,6 +52,9 @@ class Clients(MutableMapping):
|
||||||
def __setitem__(self, key, value):
|
def __setitem__(self, key, value):
|
||||||
self.store[self.ident_map.get(key, key)] = value
|
self.store[self.ident_map.get(key, key)] = value
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return str(list(map(str, self)))
|
||||||
|
|
||||||
|
|
||||||
class Client(object):
|
class Client(object):
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in New Issue