1
0
Fork 0

correct variable names in error handler

This commit is contained in:
Kevin Matz 2019-11-17 13:26:31 -05:00
parent 232cd9814b
commit 3d7b0e13b5
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ for name in config.get('network', 'hogs').split(','):
logger.info("Adding Hog device at net# " + str(net))
servers[net] = udp_client.SimpleUDPClient(ip, port)
except KeyError as e:
print('Error configuring button', b, e)
print('Error configuring net#', net, e)
continue