Skip to content

Commit

Permalink
desc + logs print fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoTini committed Apr 7, 2023
1 parent 7a983c1 commit e5e62e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -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),
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit e5e62e9

Please sign in to comment.