From ffa2150d426a2697b8e98e9c5ef4b9fa45139644 Mon Sep 17 00:00:00 2001 From: awsr <43862868+awsr@users.noreply.github.com> Date: Tue, 20 Jan 2026 22:07:44 -0800 Subject: [PATCH] Re-enable file deletion --- modules/ui_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui_common.py b/modules/ui_common.py index 4c0c6979e..b96e0daff 100644 --- a/modules/ui_common.py +++ b/modules/ui_common.py @@ -88,7 +88,7 @@ def delete_files(js_data, files, all_files, index): continue if os.path.exists(fn) and os.path.isfile(fn): deleted.append(fn) - # os.remove(fn) + os.remove(fn) if fn in all_files: all_files.remove(fn) shared.log.info(f'Delete: image="{fn}"')