diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-03-27 04:12:40 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-03-27 04:12:40 +0000 |
commit | 3d09b4e99fc77acddcb2a4562efe8d6444a87e3c (patch) | |
tree | 786f72018b3d205e2c6fb1c5b6f74079d0125b68 /modules/cmd_args.py | |
parent | ff0d97c1e3dafe9b15d37d157859a8b0fa934bff (diff) | |
download | stable-diffusion-webui-gfx803-3d09b4e99fc77acddcb2a4562efe8d6444a87e3c.tar.gz stable-diffusion-webui-gfx803-3d09b4e99fc77acddcb2a4562efe8d6444a87e3c.tar.bz2 stable-diffusion-webui-gfx803-3d09b4e99fc77acddcb2a4562efe8d6444a87e3c.zip |
remove -y, bring back -f
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 4614e82d..81c0b82a 100644 --- a/modules/cmd_args.py +++ b/modules/cmd_args.py @@ -4,7 +4,7 @@ from modules.paths_internal import models_path, script_path, data_path, extensio parser = argparse.ArgumentParser()
-parser.add_argument("-y", action='store_true', help=argparse.SUPPRESS) # allows running as root; implemented outside of webui
+parser.add_argument("-f", action='store_true', help=argparse.SUPPRESS) # allows running as root; implemented outside of webui
parser.add_argument("--update-all-extensions", action='store_true', help="launch.py argument: download updates for all extensions when starting the program")
parser.add_argument("--skip-python-version-check", action='store_true', help="launch.py argument: do not check python version")
parser.add_argument("--skip-torch-cuda-test", action='store_true', help="launch.py argument: do not check if CUDA is able to work properly")
|