aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorGarrett Sutula <garrettsutula@gmail.com>2023-04-28 01:30:19 +0000
committerGarrett Sutula <garrettsutula@gmail.com>2023-04-28 01:30:19 +0000
commitd1e62b296146bd158630b8444e4720a1ae445151 (patch)
tree5fedda5c843a12e6204a6551ba6751e3b08d6a47 /modules
parentfa74daacbd98dbcaefeca39a0d0f10ae19d227e8 (diff)
downloadstable-diffusion-webui-gfx803-d1e62b296146bd158630b8444e4720a1ae445151.tar.gz
stable-diffusion-webui-gfx803-d1e62b296146bd158630b8444e4720a1ae445151.tar.bz2
stable-diffusion-webui-gfx803-d1e62b296146bd158630b8444e4720a1ae445151.zip
Improve param semantics,
Diffstat (limited to 'modules')
-rw-r--r--modules/cmd_args.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cmd_args.py b/modules/cmd_args.py
index 3aeecdcc..f47c21bb 100644
--- a/modules/cmd_args.py
+++ b/modules/cmd_args.py
@@ -95,7 +95,7 @@ parser.add_argument("--cors-allow-origins", type=str, help="Allowed CORS origin(
parser.add_argument("--cors-allow-origins-regex", type=str, help="Allowed CORS origin(s) in the form of a single regular expression", default=None)
parser.add_argument("--tls-keyfile", type=str, help="Partially enables TLS, requires --tls-certfile to fully function", default=None)
parser.add_argument("--tls-certfile", type=str, help="Partially enables TLS, requires --tls-keyfile to fully function", default=None)
-parser.add_argument("--tls-verify", type=bool, help="Enables the use of self-signed certificates when set to False", default=None)
+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")