From 263502565eaf1c8dc0aeceaa537c7525c3c8b8b4 Mon Sep 17 00:00:00 2001 From: Kyle Date: Thu, 26 Jan 2023 21:42:33 -0500 Subject: [PATCH] Remove Debug --- scripts/images_history.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/images_history.py b/scripts/images_history.py index 63b00c9..e13da4e 100644 --- a/scripts/images_history.py +++ b/scripts/images_history.py @@ -510,8 +510,6 @@ def create_tab(tabname): def run_pnginfo(image, image_path, image_file_name): if image is None: return '', '', '' - print(f"Image Path is {image_path}") - print(f"Image is {image_file_name}") geninfo, items = images.read_info_from_image(image) items = {**{'parameters': geninfo}, **items} @@ -525,9 +523,7 @@ def run_pnginfo(image, image_path, image_file_name): """.strip()+"\n" if geninfo is None: - print(f"Nothing found in the image, checking for separate file") filename = os.path.splitext(image_file_name)[0] + ".txt" - print(f"Filename is {filename}") geninfo = "" with open(filename) as f: for line in f: