GetLabel != GetValue fail

This commit is contained in:
cncfanatics
2010-11-10 09:10:20 +01:00
parent 1fdb1dc55f
commit b48227c05f

View File

@@ -72,7 +72,7 @@ class GraphFrame(wx.Frame):
def getValues(self):
values = {}
for fieldName, field in self.fields.iteritems():
values[fieldName] = field.GetLabel()
values[fieldName] = field.GetValue()
return values