From f2a27e592dce54e782dc948642564b9e3cb4df61 Mon Sep 17 00:00:00 2001 From: "Curtis L. Olson" Date: Tue, 26 Sep 2017 06:31:58 -0500 Subject: [PATCH] error catching ++ --- catalog/sgprops.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/catalog/sgprops.py b/catalog/sgprops.py index 2f5081f..67815c5 100644 --- a/catalog/sgprops.py +++ b/catalog/sgprops.py @@ -133,6 +133,8 @@ class Node(object): n.set('type', "bool") except UnicodeEncodeError: print "Encoding error with", self._value, type(self._value) + except: + print "Some other exceptiong in sgprops._createXMLElement()" # index in parent if (self.index != 0):