first step of pype's reorganization

This commit is contained in:
iLLiCiTiT 2020-05-25 18:20:02 +02:00
parent 19a46c7cd6
commit 15c0c10a5c
426 changed files with 517 additions and 530 deletions

View file

@ -1,8 +1,8 @@
import os
import traceback
from pype.lib import PypeHook
from pypeapp import Logger
from pype.premiere import lib as prlib
from pype.api import Logger
from pype.hosts.premiere import lib as prlib
class PremierePrelaunch(PypeHook):
@ -27,7 +27,7 @@ class PremierePrelaunch(PypeHook):
env = os.environ
try:
__import__("pype.premiere")
__import__("pype.hosts.premiere")
__import__("pyblish")
except ImportError as e:

View file

@ -2,8 +2,8 @@ import logging
import os
from pype.lib import PypeHook
from pype.unreal import lib as unreal_lib
from pypeapp import Logger
from pype.hosts.unreal import lib as unreal_lib
from pype.api import Logger
log = logging.getLogger(__name__)