4 Lines in eco2pgn.py produce and error like this when used with python3.
print '[ECO "%s"]' % eco
^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
To fix, change these lines
print '[ECO "%s"]' % eco
print '[Variation "%s"]' % variation
print '[Result "*"]'
print cont
To
print ('[ECO "%s"]' % eco)
print ('[Variation "%s"]' % variation)
print ('[Result "*"]')
print (cont)
Regards,
Thank you, change is committed to subversion.
FYI i briefly tested on python 2.7 and still works there too.
Cheers
Here is an updated sript that works with Python 3
ok