mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-20 13:23:18 -07:00
Fixes all SSL issues
This commit is contained in:
parent
17271bcc51
commit
41e0d10e25
8 changed files with 26 additions and 31 deletions
|
@ -22,7 +22,7 @@ class GitHub(object):
|
|||
if params and type(params) is dict:
|
||||
url += '?' + '&'.join([str(x) + '=' + str(params[x]) for x in params.keys()])
|
||||
|
||||
data = requests.get(url)
|
||||
data = requests.get(url, verify=False)
|
||||
|
||||
if data.ok:
|
||||
json_data = data.json()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue