Merge pull request #652 from WithoutCord/nightly

fix for not picking up next highest ranked release
This commit is contained in:
Clinton Hall 2015-01-02 22:15:20 +10:30
commit 79672b575f

View file

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