Skip to content
This repository has been archived by the owner on Oct 7, 2021. It is now read-only.

Commit

Permalink
remove warning mistake when listing components
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelcampos committed Mar 4, 2021
1 parent 5697b5b commit 2825b31
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/mgear/shifter/guide_manager_component.py
Expand Up @@ -88,7 +88,9 @@ def get_component_list(self):
pm.progressWindow(e=True,
step=1,
status='\nLoading: %s' % comp_name)
if comp_name in trackLoadComponent:
if comp_name == "__init__.py":
continue
elif comp_name in trackLoadComponent:
pm.displayWarning(
"Custom component name: %s, already in default "
"components. Names should be unique. This component is"
Expand Down

0 comments on commit 2825b31

Please sign in to comment.