diff options
author | InvincibleDude <81354513+InvincibleDude@users.noreply.github.com> | 2023-02-05 15:02:44 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-05 15:02:44 +0000 |
commit | f4b78e73a424299a496801930e6d8868d8d03e61 (patch) | |
tree | 48884e8a2ba070d8640f79c1676ffff3e35f37e7 /modules/hashes.py | |
parent | 3ec2eb8bf12ae629c292ed0e96f199669040c5de (diff) | |
parent | ea9bd9fc7409109adcd61b897abc2c8881161256 (diff) | |
download | stable-diffusion-webui-gfx803-f4b78e73a424299a496801930e6d8868d8d03e61.tar.gz stable-diffusion-webui-gfx803-f4b78e73a424299a496801930e6d8868d8d03e61.tar.bz2 stable-diffusion-webui-gfx803-f4b78e73a424299a496801930e6d8868d8d03e61.zip |
Merge branch 'AUTOMATIC1111:master' into improved-hr-conflict-test
Diffstat (limited to 'modules/hashes.py')
-rw-r--r-- | modules/hashes.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/hashes.py b/modules/hashes.py index 819362a3..83272a07 100644 --- a/modules/hashes.py +++ b/modules/hashes.py @@ -4,6 +4,7 @@ import os.path import filelock
+from modules import shared
from modules.paths import data_path
@@ -68,6 +69,9 @@ def sha256(filename, title): if sha256_value is not None:
return sha256_value
+ if shared.cmd_opts.no_hashing:
+ return None
+
print(f"Calculating sha256 for {filename}: ", end='')
sha256_value = calculate_sha256(filename)
print(f"{sha256_value}")
|