PyPS3tools icon indicating copy to clipboard operation
PyPS3tools copied to clipboard

Syntax Error: Invalid Syntax for unix systems. (check.py | arch linux)

Open Adi-0 opened this issue 4 years ago • 1 comments


File "/home/user/PyPS3tools-master/PyPS3checker/checker.py",

line 106:

print tab, " ".join(a+b for a,b in zip(chunk[::2], chunk[1::2]))
      ^

SyntaxError: invalid syntax

(Thank you for making this software unix compatible btw, its a godsend)

Adi-0 avatar Sep 27 '21 04:09 Adi-0

It's Python 2 code, so you'll need to call it explicitly:

python2 checker.py <file>

fulzamoth avatar Oct 04 '21 15:10 fulzamoth