add usage of ident_map for tsstats.client.Clients.__setitem__

This commit is contained in:
Thor77 2016-05-19 15:40:28 +02:00
parent 55277a2c75
commit cb6d433dca
1 changed files with 1 additions and 0 deletions

View File

@ -48,6 +48,7 @@ class Clients(MutableMapping):
return len(self.store)
def __setitem__(self, key, value):
key = self.ident_map.get(key, key)
self.store[key] = value