From de03470dbc41ab23cdf6623da3f10d81e4b4d9bd Mon Sep 17 00:00:00 2001 From: daid Date: Fri, 17 Apr 2015 08:52:36 +0200 Subject: [PATCH] Add gcode prefix message handling. Fix gcode flavor issue. --- PrinterConnection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PrinterConnection.py b/PrinterConnection.py index c0181a2406..d5fb1e1690 100644 --- a/PrinterConnection.py +++ b/PrinterConnection.py @@ -150,7 +150,7 @@ class PrinterConnection(SignalEmitter): programmer.connect(self._serial_port) #Connect with the serial, if this succeeds, it's an arduino based usb device. self._serial = programmer.leaveISP() except ispBase.IspError as e: - Logger.log('i', "Could not establish connect ion on %s: %s. Device is not arduino based." %(self._serial_port,str(e))) + Logger.log('i', "Could not establish connection on %s: %s. Device is not arduino based." %(self._serial_port,str(e))) except: Logger.log('i', "Could not establish connection on %s, unknown reasons. Device is not arduino based." % self._serial_port)