From dea9ea82c52dd7866ddc5f0ac19bc681531bfc7a Mon Sep 17 00:00:00 2001 From: jriegel Date: Fri, 6 Dec 2013 00:13:22 +0100 Subject: [PATCH] fix semicolon in Init script --- src/App/FreeCADInit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App/FreeCADInit.py b/src/App/FreeCADInit.py index 45b20223e1be..bc70d6990d03 100644 --- a/src/App/FreeCADInit.py +++ b/src/App/FreeCADInit.py @@ -47,7 +47,7 @@ def InitApplications(): BinDir = os.path.realpath(BinDir) LibDir = FreeCAD.getHomePath()+'lib' LibDir = os.path.realpath(LibDir) - AddPath = FreeCAD.ConfigGet("AdditionalModulePaths").split(" ") + AddPath = FreeCAD.ConfigGet("AdditionalModulePaths").split(";") HomeMod = FreeCAD.ConfigGet("UserAppData")+"Mod" HomeMod = os.path.realpath(HomeMod) MacroDir = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Macro").GetString("MacroPath") @@ -118,7 +118,7 @@ def InitApplications(): if len(platform.mac_ver()[0]) > 0: sys.path.append(os.path.expanduser('~/Library/Application Support/FreeCAD/Mod')) -# some often used shortcuts (for lazy people like me -) +# some often used shortcuts (for lazy people like me ;-) App = FreeCAD Log = FreeCAD.Console.PrintLog Msg = FreeCAD.Console.PrintMessage