From e5e62e90485c4037aa25afc18a8c00b7ff51beb4 Mon Sep 17 00:00:00 2001 From: HugoTini <65409496+HugoTini@users.noreply.github.com> Date: Fri, 7 Apr 2023 16:21:46 +0200 Subject: [PATCH] desc + logs print fix --- __init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__init__.py b/__init__.py index 74445ed..7696e66 100644 --- a/__init__.py +++ b/__init__.py @@ -1,6 +1,6 @@ bl_info = { 'name': 'DeepBump', - 'description': 'Generates normal maps from image textures', + 'description': 'Generates normal & height maps from image textures', 'author': 'Hugo Tini', 'version': (7, 0, 0), 'blender': (3, 5, 0), @@ -72,7 +72,7 @@ def install_and_import_module(module_name, package_name=None, global_name=None): result = subprocess.run([sys.executable, '-m', 'pip', 'install', package_name, '-t', get_dependencies_path()], text=True, capture_output=True) if result.returncode != 0 : - raise Exception(f'Dependency install issue : {result.stdout}') + raise Exception(f'Dependency install issue : {result}') # The installation succeeded, attempt to import the module again import_module(module_name, global_name)