Skip to content

Commit

Permalink
Change update manager dcc query
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaScheller committed Mar 24, 2024
1 parent a1612bf commit 4214226
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/update_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,14 +305,14 @@ def get_dcc_name(self):
if not hou.isUIAvailable():
raise ImportError
return "houdini"
except ImportError:
except Exception:
pass
# Maya
try:
import pymel
import pymel.core as pm

return "maya"
except ImportError:
except Exception:
pass

raise Exception(
Expand Down

0 comments on commit 4214226

Please sign in to comment.