From 2a679efc1494b001cb061f63879f84155bcd5b55 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Fri, 21 Apr 2017 01:05:16 -0400 Subject: [PATCH] Remove print message for except clause when iterating through item properties. This is dev stuff, not too worried about handling it. Was failing on getting a property that doesn't make sense for a module. --- gui/itemStats.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gui/itemStats.py b/gui/itemStats.py index 5d7fac10b..6dbec6a9e 100644 --- a/gui/itemStats.py +++ b/gui/itemStats.py @@ -1384,7 +1384,6 @@ class ItemProperties(wx.Panel): except Exception as e: # TODO: Add logging to this. # We couldn't get a property for some reason. Skip it for now. - print(e) continue index = self.paramList.InsertStringItem(sys.maxint, attrName)