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:
authorJaime van Kessel <nallath@gmail.com>2016-03-17 16:44:37 +0300
committerJaime van Kessel <nallath@gmail.com>2016-03-17 16:44:37 +0300
commit2df91d8e0b872bb80f0db9835c6d45aad237dcb6 (patch)
tree0b6f2631936f4f475b3fbff9d2964690241ff929 /plugins/USBPrinting/PrinterConnection.py
parent89256b54236a35248752b68d4d33a2c50bcc21fe (diff)
parent4507560e309e3ae23e6faa9ec145546fb3805909 (diff)
Merge branch '2.1' of https://github.com/Ultimaker/Cura into 2.1
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 00df335828..f915b54718 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):