mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 10:36:52 -07:00
fix for not picking up next highest ranked release
This commit is contained in:
parent
7f980a4964
commit
632810b1e1
1 changed files with 1 additions and 1 deletions
|
@ -292,7 +292,7 @@ class autoProcessMovie:
|
|||
logger.debug("Opening URL: %s" % (url), section)
|
||||
|
||||
try:
|
||||
r = requests.get(url, params={'media_id': media_id})
|
||||
r = requests.get(url, params={'media_id': media_id}, verify=False)
|
||||
except requests.ConnectionError:
|
||||
logger.error("Unable to open URL %s" % (url), section)
|
||||
return [1, "%s: Failed to post-process - Unable to connect to %s" % (section, section) ]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue