aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/modelloader.py1
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