Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <ghost_keeper+github@hotmail.com>2016-03-17 13:53:11 +0300
committerGhostkeeper <ghost_keeper+github@hotmail.com>2016-03-17 13:53:11 +0300
commit4507560e309e3ae23e6faa9ec145546fb3805909 (patch)
tree6c6d9e8051221c79c13cea8b13bdacae9921ea2e /plugins/USBPrinting/PrinterConnection.py
parentaafb9812454a88db70a8765f81224c9461b2aff0 (diff)
Codestyle: Whitespace around operators
A space on both sides around binary operators. A space after the comma. Contributes to issue CURA-1102.
Diffstat (limited to 'plugins/USBPrinting/PrinterConnection.py')
-rw-r--r--plugins/USBPrinting/PrinterConnection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/USBPrinting/PrinterConnection.py b/plugins/USBPrinting/PrinterConnection.py
index 907cebc012..951996f699 100644
--- a/plugins/USBPrinting/PrinterConnection.py
+++ b/plugins/USBPrinting/PrinterConnection.py
@@ -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):