From a3fad647799f62100deb6e54d5c4530dcb11963a Mon Sep 17 00:00:00 2001 From: Fredrik Unger Date: Mon, 2 Mar 2026 13:43:49 +0100 Subject: [PATCH] xinclude: fixed python3 except --- xinclude/contact.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xinclude/contact.py b/xinclude/contact.py index 4c7acf2..fe17f0e 100755 --- a/xinclude/contact.py +++ b/xinclude/contact.py @@ -139,7 +139,7 @@ class Organization(object): # Quick fix for when an address has two phone numbers : FIXME try: self.address[i].add_phone(phone) - except IndexError, e: + except IndexError: pass def db_xml(self): -- 2.30.2