1
0
Fork 0

explicitly convert list to a string before logging

This commit is contained in:
Kevin Matz 2018-10-25 12:58:46 -04:00
parent 19c2a4ef55
commit 48d8c3ec4f
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ class HogDevice():
list = str(i) + "." + str(ctx.number.value)
else:
list = i
logger.info("Go on List " + list)
logger.info("Go on List " + str(list))
self.osc.send_message(ctx.device, "/hog/playback/go/0", list)
def _list_halt(self, ctx):