Pablo Scarpati - 2022-05-27

Hello!

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