We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd30be8 commit 34f09abCopy full SHA for 34f09ab
1 file changed
app_specific/motionbuilder/startup/init_tank.py
@@ -48,9 +48,15 @@ def bootstrap_tank():
48
try:
49
engine = tank.platform.start_engine(engine_name, context.tank, context)
50
except Exception as e:
51
- FBMessageBox(
52
- "Flow Production Tracking: Error", "Could not start engine: %s" % e, "Ok"
53
- )
+ if not isinstance(e, tank.TankError) or not hasattr(
+ e, "_tank_error_raised_already"
+ ):
54
+ FBMessageBox(
55
+ "Flow Production Tracking: Error",
56
+ "Could not start engine: %s" % e,
57
+ "Ok",
58
+ )
59
+
60
return
61
62
# if a file was specified, load it now
0 commit comments