caronc / nzb-subliminal

Fetches subtitles for the videos it's provided. It can be easily integrated into NZBGet and SABnzbd too.
GNU General Public License v3.0
103 stars 14 forks source link

syntax error #66

Closed eikaramba closed 6 years ago

eikaramba commented 6 years ago

getting syntax error recently. any idea why that could be? using phyton 3.7.0 on windows x64

File "C:\Program Files\Media\nzbget-subliminal\Subliminal.py", line 433
    except OSError, e:
                  ^
SyntaxError: invalid syntax
caronc commented 6 years ago

Unfortunately this script isn't compatible with Python 3. You need to use Python 2.7 instead.

eikaramba commented 6 years ago

ah ok thx. solved it by renaming python.exe (version 2) binary to python2.exe and then doing python2 "pathtolib\Subliminal.py"

works :)