The refactor branch fails on startup under Python3 with...
Traceback (most recent call last):
File "./run_server.py", line 34, in <module>
s.run_server(port=port)
File "/home/paul/code/Hydra_py3/hydra-server/hydra_server/__init__.py", line 252, in run_server
spyne.const.xml_ns.DEFAULT_NS = 'soap_server.hydra_complexmodels'
AttributeError: module 'spyne.const' has no attribute 'xml_ns'
This can be fixed by changing spyne.const.xml_ns.DEFAULT_NS to spyne.const.xml.DEFAULT_NS
The
refactor
branch fails on startup under Python3 with...This can be fixed by changing
spyne.const.xml_ns.DEFAULT_NS
tospyne.const.xml.DEFAULT_NS