Skip to content

Commit

Permalink
fix semicolon in Init script
Browse files Browse the repository at this point in the history
  • Loading branch information
jriegel committed Dec 5, 2013
1 parent 272e606 commit dea9ea8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App/FreeCADInit.py
Expand Up @@ -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")
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit dea9ea8

Please sign in to comment.