From 3a27378844db0e7f60ffa8264086fab57febd13d Mon Sep 17 00:00:00 2001 From: Priit Laes Date: Sat, 12 Mar 2016 15:06:34 +0200 Subject: [PATCH] python: Sketcher: *.py: Fix python3 syntax --- src/Mod/Sketcher/InitGui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Sketcher/InitGui.py b/src/Mod/Sketcher/InitGui.py index b71b1d75d..03ff6fd87 100644 --- a/src/Mod/Sketcher/InitGui.py +++ b/src/Mod/Sketcher/InitGui.py @@ -45,7 +45,7 @@ class SketcherWorkbench ( Workbench ): try: import Profiles except ImportError: - print "Error in Profiles module" + print("Error in Profiles module") def GetClassName(self): return "SketcherGui::Workbench"