Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -758,6 +758,13 @@ def import_from_addon(self, repo: Addon, all_repos: List[Addon]):
# Plot might fail for a number of reasons
self.wbs.append(dep)
fci.Console.PrintLog("Failed to import Plot module\n")
elif dep.lower() == "meshpart":
# MeshPart is strange: it doesn't ever appear in the listWorkbenches() output
try:
__import__("MeshPart")
except ImportError:
self.wbs.append(dep)
fci.Console.PrintLog("Failed to import MeshPart module\n")
else:
self.wbs.append(dep)

Expand Down