Fixed wrong variable name

Closes #715
This commit is contained in:
Gina Häußge 2015-01-12 10:45:39 +01:00
parent 76f7a40b7f
commit f5eef06e88

View file

@ -308,7 +308,7 @@ class CommandTrigger(GenericEventListener):
def _executeGcodeCommand(self, command):
commands = [command]
if isinstance(command, (list, tuple, set)):
self.logger.debug("Executing GCode commands: %r" % command)
self._logger.debug("Executing GCode commands: %r" % command)
commands = list(command)
else:
self._logger.debug("Executing GCode command: %s" % command)