diff options
author | ezxzeng <zhixuan.zeng@gmail.com> | 2023-11-07 20:25:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-07 20:25:27 +0000 |
commit | f9c14a8c8c8b682c2a7f7a11306b26e2a28ebeec (patch) | |
tree | 1c7f6abc11bd2aacd2a0d16a0b7db1963c9b26cd /modules/cmd_args.py | |
parent | 759515316e8ec536f34fad616e8c6a33674a164b (diff) | |
parent | 5e80d9ee99c5899e5e2b130408ffb65a0585a62a (diff) | |
download | stable-diffusion-webui-gfx803-f9c14a8c8c8b682c2a7f7a11306b26e2a28ebeec.tar.gz stable-diffusion-webui-gfx803-f9c14a8c8c8b682c2a7f7a11306b26e2a28ebeec.tar.bz2 stable-diffusion-webui-gfx803-f9c14a8c8c8b682c2a7f7a11306b26e2a28ebeec.zip |
Merge branch 'dev' into ui_mobile_optimizations
Diffstat (limited to 'modules/cmd_args.py')
-rw-r--r-- | modules/cmd_args.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cmd_args.py b/modules/cmd_args.py index 4e602a84..a9fb9bfa 100644 --- a/modules/cmd_args.py +++ b/modules/cmd_args.py @@ -107,7 +107,7 @@ parser.add_argument("--tls-certfile", type=str, help="Partially enables TLS, req parser.add_argument("--disable-tls-verify", action="store_false", help="When passed, enables the use of self-signed certificates.", default=None)
parser.add_argument("--server-name", type=str, help="Sets hostname of server", default=None)
parser.add_argument("--gradio-queue", action='store_true', help="does not do anything", default=True)
-parser.add_argument("--no-gradio-queue", action='store_true', help="Disables gradio queue; causes the webpage to use http requests instead of websockets; was the defaul in earlier versions")
+parser.add_argument("--no-gradio-queue", action='store_true', help="Disables gradio queue; causes the webpage to use http requests instead of websockets; was the default in earlier versions")
parser.add_argument("--skip-version-check", action='store_true', help="Do not check versions of torch and xformers")
parser.add_argument("--no-hashing", action='store_true', help="disable sha256 hashing of checkpoints to help loading performance", default=False)
parser.add_argument("--no-download-sd-model", action='store_true', help="don't download SD1.5 model even if no model is found in --ckpt-dir", default=False)
|