From 2484d2b548e2a3219add805d8be367f1124ae0ac Mon Sep 17 00:00:00 2001 From: ZERO-A-ONE Date: Wed, 20 Aug 2025 22:47:57 +0800 Subject: [PATCH] Update xml_exporter.py --- GhidraBuild/IDAPro/Python/9xx/plugins/xml_exporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GhidraBuild/IDAPro/Python/9xx/plugins/xml_exporter.py b/GhidraBuild/IDAPro/Python/9xx/plugins/xml_exporter.py index 317df68ebd..ced9bd968c 100644 --- a/GhidraBuild/IDAPro/Python/9xx/plugins/xml_exporter.py +++ b/GhidraBuild/IDAPro/Python/9xx/plugins/xml_exporter.py @@ -75,7 +75,7 @@ class XmlExporterPlugin(ida_idaapi.plugin_t): msg = "XML Export cancelled!" print("\n" + msg) idc.warning(msg) - except: + except Exception as e: ida_kernwin.hide_wait_box() msg = "***** Exception occurred: XML Exporter failed! *****" print(f"\n{msg}\n {type(e).__name__}: {e}")