diff options
author | Muhammad Rehan Aslam <19831661+ranareehanaslam@users.noreply.github.com> | 2023-12-19 04:50:38 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-19 04:50:38 +0000 |
commit | 0d5941edbc4c602b760d4200bd76e044c65a0e40 (patch) | |
tree | 8fcd459618ea8deef11e951dc3e2f799867f5c03 | |
parent | fe4d084390d35de49baf83c3319a72d71f540aee (diff) | |
download | stable-diffusion-webui-gfx803-0d5941edbc4c602b760d4200bd76e044c65a0e40.tar.gz stable-diffusion-webui-gfx803-0d5941edbc4c602b760d4200bd76e044c65a0e40.tar.bz2 stable-diffusion-webui-gfx803-0d5941edbc4c602b760d4200bd76e044c65a0e40.zip |
Update webui.py
Co-authored-by: Aarni Koskela <akx@iki.fi>
-rw-r--r-- | webui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ def api_only(): print(f"Startup time: {startup_timer.summary()}.")
api.launch(
- server_name = cmd_opts.server_name if cmd_opts.server_name else ("0.0.0.0" if cmd_opts.listen else "127.0.0.1"),
+ server_name=cmd_opts.server_name or ("0.0.0.0" if cmd_opts.listen else "127.0.0.1"),
port=cmd_opts.port if cmd_opts.port else 7861,
root_path=f"/{cmd_opts.subpath}" if cmd_opts.subpath else ""
)
|