That comma at line 181 is an old syntax. You can replace it by " as ". (the blanks are spaces)
Code: Select all
except httplib.HTTPException as e:
However, I am not sure it will solve the problem, since I don't use python 3.xx. If it doesn't, please use python 2.xx. (cd Eddy's post)
If it solves the problem, there are similar lines (except ERROR,e) in nhigh.py, so just replace the comma by " as " for each error it will give you (it only gives the 1st error it finds).
Also, if don't want python to open a console each time, you can replace nhigh.py by nhigh.pyw. (add a 'w' to the extension)
I'll also do it next time. I kind of forgot before releasing it since I'm running it from a console anyway but it might disturbing for you.