I have been testing the people library, but when running python people.py people.xml I receive the following error:
Traceback (most recent call last):
File "people.py", line 4390, in <module>
main()
File "people.py", line 4383, in main
parse(args[0])
File "people.py", line 4253, in parse
rootObj.build(rootNode, gds_collector_=gds_collector)
File "people.py", line 1196, in build
self._buildChildren(child, node, nodeName_, gds_collector_=gds_collector_)
File "people.py", line 1203, in _buildChildren
obj_.build(child_, gds_collector_=gds_collector_)
File "people.py", line 1368, in build
self._buildChildren(child, node, nodeName_, gds_collector_=gds_collector_)
File "people.py", line 1375, in _buildChildren
valuestr_ = self.gds_parse_string(valuestr_, node, 'emp')
AttributeError: 'commentsType' object has no attribute 'gds_parse_string'
The generated “commentsType” class appears to be a subclass of GeneratedsSuper, so it should have visibility on gds_parse_string. Is this a bug or am I doing something wrong?
Many thanks!
Pablo
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello!
I have been testing the people library, but when running
python people.py people.xml
I receive the following error:The generated
“commentsType”
class appears to be a subclass ofGeneratedsSuper
, so it should have visibility ongds_parse_string
. Is this a bug or am I doing something wrong?Many thanks!
Pablo