Skip to content

Commit

Permalink
Fixed error in addon manager
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Mar 29, 2017
1 parent 0ca5ebe commit 7667875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/AddonManager/AddonManager.py
Expand Up @@ -361,7 +361,7 @@ def run(self):
for mac in macros:
macname = mac[6:]
macname = macname.replace("&","&")
if not (macname in MACROS_BLACKLIST):
if (not (macname in MACROS_BLACKLIST)) and (not("recipes" in macname.lower())):
macfile = mac.replace(" ","_")+".FCMacro"
if os.path.exists(os.path.join(macropath,macfile)):
installed = 1
Expand Down

0 comments on commit 7667875

Please sign in to comment.