diff options
author | Ju1-js <40339350+Ju1-js@users.noreply.github.com> | 2023-03-01 06:05:47 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-01 06:05:47 +0000 |
commit | 7990ed92be7f34e609b441252ff97ae1504b0a3f (patch) | |
tree | 9084be4a6a8440d0e5e4a7c84ca82a4dcc59f147 | |
parent | 1e30e4d9ebd9c36ccee43ec0e61c6ab490171614 (diff) | |
download | stable-diffusion-webui-gfx803-7990ed92be7f34e609b441252ff97ae1504b0a3f.tar.gz stable-diffusion-webui-gfx803-7990ed92be7f34e609b441252ff97ae1504b0a3f.tar.bz2 stable-diffusion-webui-gfx803-7990ed92be7f34e609b441252ff97ae1504b0a3f.zip |
Slash was facing the wrong way
-rw-r--r-- | webui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -209,7 +209,7 @@ def webui(): gradio_auth_creds = []
if cmd_opts.gradio_auth:
- gradio_auth_creds += [x.strip() for x in cmd_opts.gradio_auth.strip('"').replace('/n', '').split(',') if x.strip()]
+ gradio_auth_creds += [x.strip() for x in cmd_opts.gradio_auth.strip('"').replace('\n', '').split(',') if x.strip()]
if cmd_opts.gradio_auth_path:
with open(cmd_opts.gradio_auth_path, 'r', encoding="utf8") as file:
for line in file.readlines():
|