From 574a405ec9111211e9964de02cacb49900ae830b Mon Sep 17 00:00:00 2001 From: dat972 Date: Tue, 7 Jul 2026 00:17:11 -0500 Subject: [PATCH] fixed how we check that a drawer was complete --- fccs_export.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fccs_export.py b/fccs_export.py index 83c851c..94e7cf8 100755 --- a/fccs_export.py +++ b/fccs_export.py @@ -233,8 +233,8 @@ def wait_for_export(app, ctrl, timeouts, log): saved.wait_not("visible", timeout=timeouts["confirm"]) log(" Confirmation dismissed.") except Exception as e: - log(f" ERROR dismissing confirmation dialog: {e}") - return False + log(f" WARNING: could not dismiss confirmation dialog: {e}") + log(" Export succeeded but dialog remains — will be dismissed next iteration.") log(" Export complete.") return True