mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 05:43:16 -07:00
Merge pull request #652 from WithoutCord/nightly
fix for not picking up next highest ranked release
This commit is contained in:
commit
79672b575f
1 changed files with 1 additions and 1 deletions
|
@ -292,7 +292,7 @@ class autoProcessMovie:
|
||||||
logger.debug("Opening URL: %s" % (url), section)
|
logger.debug("Opening URL: %s" % (url), section)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
r = requests.get(url, params={'media_id': media_id})
|
r = requests.get(url, params={'media_id': media_id}, verify=False)
|
||||||
except requests.ConnectionError:
|
except requests.ConnectionError:
|
||||||
logger.error("Unable to open URL %s" % (url), section)
|
logger.error("Unable to open URL %s" % (url), section)
|
||||||
return [1, "%s: Failed to post-process - Unable to connect to %s" % (section, 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