22-05-2018, 20:45
try on line 55 of addon.py
on first lines where import new line and enter
if that help on line 55 and has error on other lines, be sure to add that first "f=" and so on where has on that .py file.
I bypass that ssl errors on windows, on some other websites not on that kodi addon but you can try
or this at top op addon.py
and this before - "req"
Код:
f = opener.open(req, response = urllib2.urlopen(request, context=ssl._create_unverified_context()))
Код:
import ssl
I bypass that ssl errors on windows, on some other websites not on that kodi addon but you can try
or this at top op addon.py
Код:
ssl._create_default_https_context = ssl._create_unverified_context
Код:
context = ssl._create_unverified_context()