From 41533f28b7ab08d6fa59c229c95b2a2d49e649a6 Mon Sep 17 00:00:00 2001 From: Laroustine Date: Fri, 7 Jul 2023 16:31:42 +0200 Subject: [PATCH] [FIX] OS import added in pipeline creator plugins --- openpype/pipeline/create/creator_plugins.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openpype/pipeline/create/creator_plugins.py b/openpype/pipeline/create/creator_plugins.py index 947a90ef08..78a6aa091d 100644 --- a/openpype/pipeline/create/creator_plugins.py +++ b/openpype/pipeline/create/creator_plugins.py @@ -661,6 +661,7 @@ def discover_convertor_plugins(*args, **kwargs): def discover_legacy_creator_plugins(): from openpype.lib import Logger + import os log = Logger.get_logger("CreatorDiscover")