2019 Nov 16, 04:25 AM
Ok I think I may have fixed this one?
gv.sd[u"umo"][i] = int(qdict[u"m" + str(i)])
KeyError: 'umo'
Typo perhaps?
changed to
gv.sd[u"mo"][i] = int(qdict[u"m" + str(i)])
This seems to be working now.
Gary
gv.sd[u"umo"][i] = int(qdict[u"m" + str(i)])
KeyError: 'umo'
Typo perhaps?
changed to
gv.sd[u"mo"][i] = int(qdict[u"m" + str(i)])
This seems to be working now.
Gary