From 174c9b760a9b3e2211a8ac53782020de0edec3ca Mon Sep 17 00:00:00 2001 From: Milan Kolar Date: Thu, 28 Jan 2021 12:40:20 +0100 Subject: [PATCH] fix wrong import in blender init --- pype/hosts/blender/startup/init.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pype/hosts/blender/startup/init.py b/pype/hosts/blender/startup/init.py index 9d078f44a3..75fe4d30f7 100644 --- a/pype/hosts/blender/startup/init.py +++ b/pype/hosts/blender/startup/init.py @@ -1,3 +1,3 @@ -from pype.hosts import blender.api +from pype.hosts.blender import api -blender.api.install() +api.install()