Fix typo in AddonManager

This commit is contained in:
wandererfan
2018-05-28 17:36:37 -04:00
committed by wmayer
parent b54f0353b0
commit 3b02ff2a94

View File

@@ -944,7 +944,7 @@ class InstallWorker(QtCore.QThread):
os.makedirs(macro_dir)
for f in os.listdir(clonedir):
if f.lower().endswith(".fcmacro"):
symlink(os.path.join(clonedir, f), os.path.joint(macro_dir, f))
symlink(os.path.join(clonedir, f), os.path.join(macro_dir, f))
FreeCAD.ParamGet('User parameter:Plugins/'+self.repos[idx][0]).SetString("destination",clonedir)
answer += translate("AddonsInstaller", "A macro has been installed and is available the Macros menu") + ": <b>"
answer += f + "</b>"