Fixed error in addon manager
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user