Fixed error in addon manager

This commit is contained in:
Yorik van Havre
2017-03-29 10:39:59 -03:00
parent 8106aaf59b
commit 4b6806310a

View File

@@ -361,7 +361,7 @@ class MacroWorker(QtCore.QThread):
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