Mercurial > code > home > repos > light9
changeset 1806:5668ad92a98e
bug in collector log
Ignore-this: aa0d13a3d59c156de00d48939af36145
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Fri, 08 Jun 2018 09:14:36 +0000 |
parents | 4d129dd1752e |
children | 56e435ac7a41 |
files | bin/collector |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/bin/collector Fri Jun 08 09:12:07 2018 +0000 +++ b/bin/collector Fri Jun 08 09:14:36 2018 +0000 @@ -66,7 +66,7 @@ def addClient(self, client): self.clients.append([client, {}]) # seen = {dev: attrs} - log.info('added client %s %s', len(clients), client) + log.info('added client %s %s', len(self.clients), client) def delClient(self, client): self.clients = [[c, t] for c, t in self.clients if c != client]