From cbdd4c2f77b49b53f67c3d1c3fa0949fe56aeeeb Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Fri, 22 Oct 2021 18:03:58 +0200 Subject: [PATCH] fix import of python 2 comp function --- openpype/tools/publisher/control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openpype/tools/publisher/control.py b/openpype/tools/publisher/control.py index 0929157288..24ec9dcb0e 100644 --- a/openpype/tools/publisher/control.py +++ b/openpype/tools/publisher/control.py @@ -9,7 +9,7 @@ import weakref try: from weakref import WeakMethod except Exception: - from openpype.lib.python2_comp import WeakMethod + from openpype.lib.python_2_comp import WeakMethod import avalon.api import pyblish.api