chiark / gitweb /
Added copy button to project planner, and cleaned up project planner code a bit.
[cura.git] / Cura / util / gcodeInterpreter.py
index 3af69bb48e43de4268f4ad4d9d5ddac481d03469..5714972cae3ff0472d63d7739e71e2f722baa842 100644 (file)
@@ -9,13 +9,13 @@ import os
 from util import util3d
 from util import profile
 
-class gcodePath():
+class gcodePath(object):
        def __init__(self, newType, pathType, startPoint):
                self.type = newType
                self.pathType = pathType
                self.list = [startPoint]
 
-class gcode():
+class gcode(object):
        def __init__(self):
                self.regMatch = {}
                self.layerList = []