mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 00:43:37 +00:00
Fixed bug for returning requests object exceptions
This commit is contained in:
parent
94c908b0c3
commit
23348e0bd0
17 changed files with 23 additions and 20 deletions
|
@ -37,6 +37,7 @@ except ImportError:
|
||||||
gzip = None
|
gzip = None
|
||||||
|
|
||||||
from lib import requests
|
from lib import requests
|
||||||
|
from lib.requests import exceptions
|
||||||
from lib import cachecontrol
|
from lib import cachecontrol
|
||||||
from lib.cachecontrol import caches
|
from lib.cachecontrol import caches
|
||||||
|
|
||||||
|
|
|
@ -32,6 +32,7 @@ except ImportError:
|
||||||
from lib.dateutil.parser import parse
|
from lib.dateutil.parser import parse
|
||||||
|
|
||||||
from lib import requests
|
from lib import requests
|
||||||
|
from lib.requests import exceptions
|
||||||
from lib import cachecontrol
|
from lib import cachecontrol
|
||||||
from lib.cachecontrol import caches
|
from lib.cachecontrol import caches
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ from sickbeard.exceptions import ex
|
||||||
from sickbeard.clients import http_error_code
|
from sickbeard.clients import http_error_code
|
||||||
from lib.bencode import bencode, bdecode
|
from lib.bencode import bencode, bdecode
|
||||||
from lib import requests
|
from lib import requests
|
||||||
|
from lib.requests import exceptions
|
||||||
|
|
||||||
class GenericClient(object):
|
class GenericClient(object):
|
||||||
def __init__(self, name, host=None, username=None, password=None):
|
def __init__(self, name, host=None, username=None, password=None):
|
||||||
|
|
|
@ -34,6 +34,7 @@ import base64
|
||||||
import string
|
import string
|
||||||
|
|
||||||
from lib import requests
|
from lib import requests
|
||||||
|
from lib.requests import exceptions
|
||||||
from itertools import izip, cycle
|
from itertools import izip, cycle
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
|
@ -16,21 +16,10 @@ class APICheck(unittest.TestCase):
|
||||||
indexer_id = 2930
|
indexer_id = 2930
|
||||||
lang = "en"
|
lang = "en"
|
||||||
|
|
||||||
for indexer in sickbeard.indexerApi.indexers():
|
lINDEXER_API_PARMS = sickbeard.indexerApi(2).api_params.copy()
|
||||||
print indexer
|
t = sickbeard.indexerApi(2).indexer(**lINDEXER_API_PARMS)
|
||||||
print sickbeard.indexerApi().config['langabbv_to_id'][lang]
|
epObj = t[2930]
|
||||||
print sickbeard.indexerApi(indexer).cache
|
print epObj
|
||||||
print sickbeard.indexerApi(indexer).name
|
|
||||||
print sickbeard.indexerApi(indexer).config['scene_url']
|
|
||||||
print sickbeard.indexerApi().config['valid_languages']
|
|
||||||
|
|
||||||
lINDEXER_API_PARMS = sickbeard.indexerApi(indexer).api_params.copy()
|
|
||||||
lINDEXER_API_PARMS['cache'] = True
|
|
||||||
t = sickbeard.indexerApi(indexer).indexer(**lINDEXER_API_PARMS)
|
|
||||||
epObj = t[indexer_id].airedOn(1)[0]
|
|
||||||
|
|
||||||
season = int(epObj["seasonnumber"])
|
|
||||||
episodes = [int(epObj["episodenumber"])]
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
unittest.main()
|
unittest.main()
|
|
@ -988,16 +988,16 @@ class PostProcessor(object):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
# move the episode and associated files to the show dir
|
# move the episode and associated files to the show dir
|
||||||
if self.process_method == "copy":
|
if self.process_method is "copy":
|
||||||
self._copy(self.file_path, dest_path, new_base_name, sickbeard.MOVE_ASSOCIATED_FILES,
|
self._copy(self.file_path, dest_path, new_base_name, sickbeard.MOVE_ASSOCIATED_FILES,
|
||||||
sickbeard.USE_SUBTITLES and ep_obj.show.subtitles)
|
sickbeard.USE_SUBTITLES and ep_obj.show.subtitles)
|
||||||
elif self.process_method == "move":
|
elif self.process_method is "move":
|
||||||
self._move(self.file_path, dest_path, new_base_name, sickbeard.MOVE_ASSOCIATED_FILES,
|
self._move(self.file_path, dest_path, new_base_name, sickbeard.MOVE_ASSOCIATED_FILES,
|
||||||
sickbeard.USE_SUBTITLES and ep_obj.show.subtitles)
|
sickbeard.USE_SUBTITLES and ep_obj.show.subtitles)
|
||||||
elif self.process_method == "hardlink":
|
elif self.process_method is "hardlink":
|
||||||
self._hardlink(self.file_path, dest_path, new_base_name, sickbeard.MOVE_ASSOCIATED_FILES,
|
self._hardlink(self.file_path, dest_path, new_base_name, sickbeard.MOVE_ASSOCIATED_FILES,
|
||||||
sickbeard.USE_SUBTITLES and ep_obj.show.subtitles)
|
sickbeard.USE_SUBTITLES and ep_obj.show.subtitles)
|
||||||
elif self.process_method == "symlink":
|
elif self.process_method is "symlink":
|
||||||
self._moveAndSymlink(self.file_path, dest_path, new_base_name, sickbeard.MOVE_ASSOCIATED_FILES,
|
self._moveAndSymlink(self.file_path, dest_path, new_base_name, sickbeard.MOVE_ASSOCIATED_FILES,
|
||||||
sickbeard.USE_SUBTITLES and ep_obj.show.subtitles)
|
sickbeard.USE_SUBTITLES and ep_obj.show.subtitles)
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -34,6 +34,7 @@ from sickbeard.common import Overview
|
||||||
from sickbeard.exceptions import ex
|
from sickbeard.exceptions import ex
|
||||||
from sickbeard import clients
|
from sickbeard import clients
|
||||||
from lib import requests
|
from lib import requests
|
||||||
|
from lib.requests import exceptions
|
||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
from lib.unidecode import unidecode
|
from lib.unidecode import unidecode
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,7 @@ from sickbeard.common import Overview
|
||||||
from sickbeard.exceptions import ex
|
from sickbeard.exceptions import ex
|
||||||
from sickbeard import clients
|
from sickbeard import clients
|
||||||
from lib import requests
|
from lib import requests
|
||||||
|
from lib.requests import exceptions
|
||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
from lib.unidecode import unidecode
|
from lib.unidecode import unidecode
|
||||||
|
|
||||||
|
|
|
@ -42,6 +42,7 @@ from sickbeard import clients
|
||||||
from sickbeard import tv
|
from sickbeard import tv
|
||||||
|
|
||||||
from lib import requests
|
from lib import requests
|
||||||
|
from lib.requests import exceptions
|
||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
from lib.unidecode import unidecode
|
from lib.unidecode import unidecode
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,7 @@ from sickbeard.common import Overview
|
||||||
from sickbeard.exceptions import ex
|
from sickbeard.exceptions import ex
|
||||||
from sickbeard import clients
|
from sickbeard import clients
|
||||||
from lib import requests
|
from lib import requests
|
||||||
|
from lib.requests import exceptions
|
||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -41,6 +41,7 @@ from sickbeard import encodingKludge as ek
|
||||||
from sickbeard import clients
|
from sickbeard import clients
|
||||||
|
|
||||||
from lib import requests
|
from lib import requests
|
||||||
|
from lib.requests import exceptions
|
||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
from lib.unidecode import unidecode
|
from lib.unidecode import unidecode
|
||||||
|
|
||||||
|
|
|
@ -32,6 +32,7 @@ from sickbeard import clients
|
||||||
from sickbeard.exceptions import ex
|
from sickbeard.exceptions import ex
|
||||||
|
|
||||||
from lib import requests
|
from lib import requests
|
||||||
|
from lib.requests import exceptions
|
||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
from lib.bencode import bdecode
|
from lib.bencode import bdecode
|
||||||
|
|
||||||
|
|
|
@ -34,6 +34,7 @@ from sickbeard.common import Overview
|
||||||
from sickbeard.exceptions import ex
|
from sickbeard.exceptions import ex
|
||||||
from sickbeard import clients
|
from sickbeard import clients
|
||||||
from lib import requests
|
from lib import requests
|
||||||
|
from lib.requests import exceptions
|
||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
from lib.unidecode import unidecode
|
from lib.unidecode import unidecode
|
||||||
|
|
||||||
|
|
|
@ -38,6 +38,7 @@ from sickbeard.common import Overview
|
||||||
from sickbeard.exceptions import ex
|
from sickbeard.exceptions import ex
|
||||||
from sickbeard import encodingKludge as ek
|
from sickbeard import encodingKludge as ek
|
||||||
from lib import requests
|
from lib import requests
|
||||||
|
from lib.requests import exceptions
|
||||||
from lib.unidecode import unidecode
|
from lib.unidecode import unidecode
|
||||||
|
|
||||||
proxy_dict = {
|
proxy_dict = {
|
||||||
|
|
|
@ -33,6 +33,7 @@ from sickbeard.common import Overview
|
||||||
from sickbeard.exceptions import ex
|
from sickbeard.exceptions import ex
|
||||||
from sickbeard import clients
|
from sickbeard import clients
|
||||||
from lib import requests
|
from lib import requests
|
||||||
|
from lib.requests import exceptions
|
||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
from lib.unidecode import unidecode
|
from lib.unidecode import unidecode
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,7 @@ from sickbeard.common import Overview
|
||||||
from sickbeard.exceptions import ex
|
from sickbeard.exceptions import ex
|
||||||
from sickbeard import clients
|
from sickbeard import clients
|
||||||
from lib import requests
|
from lib import requests
|
||||||
|
from lib.requests import exceptions
|
||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
from lib.unidecode import unidecode
|
from lib.unidecode import unidecode
|
||||||
|
|
||||||
|
|
|
@ -34,6 +34,7 @@ from sickbeard import db
|
||||||
from sickbeard import helpers
|
from sickbeard import helpers
|
||||||
from sickbeard.exceptions import ex
|
from sickbeard.exceptions import ex
|
||||||
from lib import requests
|
from lib import requests
|
||||||
|
from lib.requests import exceptions
|
||||||
|
|
||||||
MAX_XEM_AGE_SECS = 86400 # 1 day
|
MAX_XEM_AGE_SECS = 86400 # 1 day
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue