mirror of
https://github.com/Thor77/TeamspeakStats.git
synced 2025-04-03 12:14:40 -04:00
Add string-representation for Clients
to simplify debug-output
This commit is contained in:
parent
caff246f9a
commit
20d40c8890
1 changed files with 3 additions and 0 deletions
|
@ -52,6 +52,9 @@ class Clients(MutableMapping):
|
|||
def __setitem__(self, key, value):
|
||||
self.store[self.ident_map.get(key, key)] = value
|
||||
|
||||
def __str__(self):
|
||||
return str(list(map(str, self)))
|
||||
|
||||
|
||||
class Client(object):
|
||||
'''
|
||||
|
|
Loading…
Add table
Reference in a new issue