SyntaxError
When I try running the python script, I get this :
File "./svg-objects-export.py", line 124
print ''.join(msg)
^
SyntaxError: invalid syntax
What did I do wrong ?
You did nothing wrong. That is because in Python 3, they have replaced the print statement with the print function.
You can either run python2, or add parenthesis to all arguments of "print " in the code and push a code commit therewith here... or wait for me to do it, but maybe not so soon.
old: print ''.join(msg)
new: print(''.join(msg))
hope this helps.
Tank you for this precision
I changed all print statements to print() function, but now I get
File "C:\Program Files\Inkscape\svg-objects-export.py", line 195 sys.exit(2); ^ SyntaxError: invalid syntax
I'm not familiar with Python. Is this a Python 3 compatibility issue as well?