Skip to content

Commit

Permalink
Fixed wrong variable name
Browse files Browse the repository at this point in the history
Closes #715
  • Loading branch information
foosel committed Jan 12, 2015
1 parent 76f7a40 commit f5eef06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/octoprint/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def commandExecutioner(command):
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)
Expand Down

0 comments on commit f5eef06

Please sign in to comment.