From 0ba829de41a29e2d4d2dbf38afd5f87a99f7cdbd Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Mon, 11 Jan 2016 22:18:31 -0200 Subject: [PATCH] Fixed typo in last commit --- src/Mod/Arch/ArchProfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Arch/ArchProfile.py b/src/Mod/Arch/ArchProfile.py index 38c3eb8f6..1f0a04986 100644 --- a/src/Mod/Arch/ArchProfile.py +++ b/src/Mod/Arch/ArchProfile.py @@ -40,7 +40,7 @@ __url__ = "http://www.freecadweb.org" # Presets in the form: Class, Name, Profile type, [profile data] # Search for profiles.csv in data/Mod/Arch/Presets and in the same folder as this file profilefiles = [os.path.join(FreeCAD.getResourceDir(),"Mod","Arch","Presets","profiles.csv"), - os.path.join(os.path.basedir(__file__),"Presets","profiles.csv")] + os.path.join(os.path.dirname(__file__),"Presets","profiles.csv")] def readPresets(): Presets=[None]