Skip to content

Commit

Permalink
Merge pull request #12855 from dhwz/dev
Browse files Browse the repository at this point in the history
don't print empty lines
  • Loading branch information
AUTOMATIC1111 authored Aug 30, 2023
2 parents 834f4c7 + 7e5fcda commit 0860337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/launch_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def run_extension_installer(extension_dir):
env = os.environ.copy()
env['PYTHONPATH'] = f"{os.path.abspath('.')}{os.pathsep}{env.get('PYTHONPATH', '')}"

stdout = run(f'"{python}" "{path_installer}"', errdesc=f"Error running install.py for extension {extension_dir}", custom_env=env)
stdout = run(f'"{python}" "{path_installer}"', errdesc=f"Error running install.py for extension {extension_dir}", custom_env=env).strip()
if stdout:
print(stdout)
except Exception as e:
Expand Down

0 comments on commit 0860337

Please sign in to comment.