Closed noloop closed 4 years ago
I tried run with the step:
download the source, run wacom-gui.py from the wacom-gui directory
And I get:
./wacom-gui/wacom-gui/wacom-gui.py", line 194 print e ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(e)?
Easy to solve of course, change the code print e to print(e)
print e
print(e)
Thats a python version problem, not a code issue. Use python2.
I tried run with the step:
download the source, run wacom-gui.py from the wacom-gui directory
And I get:
Easy to solve of course, change the code
print e
toprint(e)