diff --git a/CheckerGUI.py b/CheckerGUI.py index 68cd1a56..780509e2 100644 --- a/CheckerGUI.py +++ b/CheckerGUI.py @@ -242,8 +242,10 @@ def getColumnText(self, index, col): """ """ item = self.GetItem(index, col) - return item.GetItemLabelText() - #return item.GetText() + try: + return item.GetItemLabelText() + except: + return item.GetText() #--------------------------------------------------- # These methods are callbacks for implementing the