diff options
author | d8ahazard <d8ahazard@gmail.com> | 2022-09-27 16:05:25 +0000 |
---|---|---|
committer | d8ahazard <d8ahazard@gmail.com> | 2022-09-27 16:05:25 +0000 |
commit | 31ad536c331df14dd785bfd2a1f93f91a8f7839e (patch) | |
tree | 1e3e15b7464d933370ce243b21bf01d6974d3858 | |
parent | 5756d517a6342d8a9ffa3ead636dcb84b463d2e3 (diff) | |
download | stable-diffusion-webui-gfx803-31ad536c331df14dd785bfd2a1f93f91a8f7839e.tar.gz stable-diffusion-webui-gfx803-31ad536c331df14dd785bfd2a1f93f91a8f7839e.tar.bz2 stable-diffusion-webui-gfx803-31ad536c331df14dd785bfd2a1f93f91a8f7839e.zip |
Remove debugging message
-rw-r--r-- | modules/modelloader.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/modelloader.py b/modules/modelloader.py index 2ee364f0..3bd1de4d 100644 --- a/modules/modelloader.py +++ b/modules/modelloader.py @@ -98,7 +98,6 @@ def move_files(src_path: str, dest_path: str, ext_filter: str = None): for file in os.listdir(src_path): fullpath = os.path.join(src_path, file) if os.path.isfile(fullpath): - print(f"Checking file {file} in {src_path}") if ext_filter is not None: if ext_filter not in file: continue |