mirror of
https://github.com/Thor77/TeamspeakStats.git
synced 2025-04-04 12:44:40 -04:00
Clients.__iter__ return keys instead of values
as desired by MutableMapping.__iter__
This commit is contained in:
parent
c9ab6f6b97
commit
2ebd445349
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ class Clients(MutableMapping):
|
|||
'''
|
||||
Yield all Client-objects from the collection
|
||||
'''
|
||||
return iter(self.store.values())
|
||||
return iter(self.store.keys())
|
||||
|
||||
def __getitem__(self, key):
|
||||
return self.store[self.ident_map.get(key, key)]
|
||||
|
|
Loading…
Add table
Reference in a new issue