Codestyle: Whitespace around operators

A space on both sides around binary operators. A space after the comma.

Contributes to issue CURA-1102.
This commit is contained in:
Ghostkeeper 2016-03-17 11:53:11 +01:00
parent aafb981245
commit 4507560e30
No known key found for this signature in database
GPG key ID: 701948C5954A7385

View file

@ -379,7 +379,7 @@ class PrinterConnection(OutputDevice, QObject, SignalEmitter):
@pyqtSlot("long", "long","long")
def moveHead(self, x, y, z):
Logger.log("d","Moving head to %s, %s , %s", x, y, z)
self._sendCommand("G0 X%s Y%s Z%s F3000"%(x,y,z))
self._sendCommand("G0 X%s Y%s Z%s F3000" % (x, y, z))
@pyqtSlot("long", "long","long")
def moveHeadRelative(self, x, y, z):