(This message has been automatically imported from the retired mailing list)
I retried as I told dsuch on IRC.
The only error appearing was NamedTuple import in the file :
/zato-1.1_sqlalchemy_0.9.4/zato-server/src/zato/server/service/init.py
I change the line 33 from :
from sqlalchemy.utils import NamedTuple
to :
from collections import namedtuple
and it works !
erol
On Thu 03 Apr 2014 02:00:58 PM PET, amaury wrote:
I retried as I told dsuch on IRC.
The only error appearing was NamedTuple import in the file :
/zato-1.1_sqlalchemy_0.9.4/zato-server/src/zato/server/service/init.py
I change the line 33 from :
from sqlalchemy.utils import NamedTuple
to :
from collections import namedtuple
and it works !
erol
Failed issue …
I had to change the line :
from sqlalchemy.utils import NamedTuple
to :
from sqlalchemy.utils import KeyedTuple
Sorry hope it’s Ok now !