From 131f8ddd8998372782b80ce73ec936f6254f1358 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Je=C5=BEek?= Date: Fri, 30 Jun 2023 16:23:11 +0200 Subject: [PATCH] Update openpype/pipeline/colorspace.py Co-authored-by: Roy Nieterau --- openpype/pipeline/colorspace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openpype/pipeline/colorspace.py b/openpype/pipeline/colorspace.py index bda14d275d..3f2d4891c1 100644 --- a/openpype/pipeline/colorspace.py +++ b/openpype/pipeline/colorspace.py @@ -240,7 +240,7 @@ def compatibility_check(): """Making sure PyOpenColorIO is importable""" try: import PyOpenColorIO # noqa: F401 - except (ImportError, ModuleNotFoundError): + except ImportError: return False return True