mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
flame: adding exception to ftrack plugin
This commit is contained in:
parent
9b105b3800
commit
255bf9e6ea
1 changed files with 5 additions and 0 deletions
|
|
@ -3,6 +3,11 @@ from __future__ import print_function
|
|||
import os
|
||||
import sys
|
||||
|
||||
try:
|
||||
import six
|
||||
except ImportError:
|
||||
raise ImportError("Cannot import this module")
|
||||
|
||||
SCRIPT_DIR = os.path.dirname(__file__)
|
||||
PACKAGE_DIR = os.path.join(SCRIPT_DIR, "modules")
|
||||
sys.path.append(PACKAGE_DIR)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue