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
6 changes: 5 additions & 1 deletion client/ayon_flame/startup/AYON_in_flame.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,14 @@ def app_initialized(parent=None):

try:
import flame # noqa
app_initialized(parent=None)
except ImportError:
print("!!!! not able to import flame module !!!!")

try:
app_initialized(parent=None)
except Exception as error:
print(f"!!!! not able to initialize the app: {error} !!!!")


def rescan_hooks():
import flame # noqa
Expand Down
Loading