diff options
author | Aarni Koskela <akx@iki.fi> | 2023-05-09 19:17:58 +0000 |
---|---|---|
committer | Aarni Koskela <akx@iki.fi> | 2023-05-09 19:25:39 +0000 |
commit | 3ba6c3c83c0983a025c7bddc08bb7f49481b3cbb (patch) | |
tree | 77b2bea31c0e94ac67fddf86fdc7cba65a24af2c /modules/paths.py | |
parent | 8fb16ceb288a93f6ecaa45a0afcb3db718333e3e (diff) | |
download | stable-diffusion-webui-gfx803-3ba6c3c83c0983a025c7bddc08bb7f49481b3cbb.tar.gz stable-diffusion-webui-gfx803-3ba6c3c83c0983a025c7bddc08bb7f49481b3cbb.tar.bz2 stable-diffusion-webui-gfx803-3ba6c3c83c0983a025c7bddc08bb7f49481b3cbb.zip |
Fix up string formatting/concatenation to f-strings where feasible
Diffstat (limited to 'modules/paths.py')
-rw-r--r-- | modules/paths.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/paths.py b/modules/paths.py index 0e1e00e7..acf1894b 100644 --- a/modules/paths.py +++ b/modules/paths.py @@ -16,7 +16,7 @@ for possible_sd_path in possible_sd_paths: sd_path = os.path.abspath(possible_sd_path)
break
-assert sd_path is not None, "Couldn't find Stable Diffusion in any of: " + str(possible_sd_paths)
+assert sd_path is not None, f"Couldn't find Stable Diffusion in any of: {possible_sd_paths}"
path_dirs = [
(sd_path, 'ldm', 'Stable Diffusion', []),
|