Update Path to py3-compatible printing

This commit is contained in:
Kurt Kremitzki
2017-01-29 22:11:45 -06:00
committed by looooo
parent 762f1bcb9e
commit be2a827a69
23 changed files with 92 additions and 77 deletions

View File

@@ -20,6 +20,7 @@
# * USA *
# * *
# ***************************************************************************
from __future__ import print_function
import FreeCAD
import FreeCADGui
@@ -57,7 +58,7 @@ class ObjectCompoundExtended:
def onChanged(self, obj, prop):
if prop == "Group":
print 'check order'
print('check order')
for child in obj.Group:
if child.isDerivedFrom("Path::Feature"):
child.touch()