fix for not picking up next highest ranked release

This commit is contained in:
WithoutCord 2015-01-02 03:18:12 +01:00
commit 632810b1e1

View file

@ -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) ]