mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-11 03:45:01 -05:00
Merge remote-tracking branch 'origin/dev'
This commit is contained in:
commit
32e90d70d2
@ -702,7 +702,7 @@ def get_absolute_number_from_season_and_episode(show, season, episode):
|
|||||||
|
|
||||||
def get_all_episodes_from_absolute_number(show, indexer_id, absolute_numbers):
|
def get_all_episodes_from_absolute_number(show, indexer_id, absolute_numbers):
|
||||||
if len(absolute_numbers) == 0:
|
if len(absolute_numbers) == 0:
|
||||||
raise EpisodeNotFoundByAbsoluteNumberException()
|
raise EpisodeNotFoundByAbsoluteNumberException
|
||||||
|
|
||||||
episodes = []
|
episodes = []
|
||||||
season = None
|
season = None
|
||||||
@ -718,7 +718,7 @@ def get_all_episodes_from_absolute_number(show, indexer_id, absolute_numbers):
|
|||||||
if ep:
|
if ep:
|
||||||
episodes.append(ep.episode)
|
episodes.append(ep.episode)
|
||||||
else:
|
else:
|
||||||
raise EpisodeNotFoundByAbsoluteNumberException()
|
raise EpisodeNotFoundByAbsoluteNumberException
|
||||||
season = ep.season # this will always take the last found seson so eps that cross the season border are not handeled well
|
season = ep.season # this will always take the last found seson so eps that cross the season border are not handeled well
|
||||||
|
|
||||||
return (season, episodes)
|
return (season, episodes)
|
||||||
|
@ -15,10 +15,8 @@
|
|||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with SickRage. If not, see <http://www.gnu.org/licenses/>.
|
# along with SickRage. If not, see <http://www.gnu.org/licenses/>.
|
||||||
from collections import OrderedDict
|
|
||||||
|
|
||||||
import re
|
import re
|
||||||
import time
|
|
||||||
import datetime
|
import datetime
|
||||||
import os.path
|
import os.path
|
||||||
import threading
|
import threading
|
||||||
@ -27,7 +25,6 @@ import sickbeard
|
|||||||
|
|
||||||
from sickbeard import logger, helpers, scene_numbering, common
|
from sickbeard import logger, helpers, scene_numbering, common
|
||||||
from dateutil import parser
|
from dateutil import parser
|
||||||
from sickbeard.common import cpu_presets
|
|
||||||
|
|
||||||
nameparser_lock = threading.Lock()
|
nameparser_lock = threading.Lock()
|
||||||
|
|
||||||
@ -140,7 +137,7 @@ class NameParser(object):
|
|||||||
elif self.showObj and not self.showObj.is_anime and not self.showObj.is_sports:
|
elif self.showObj and not self.showObj.is_anime and not self.showObj.is_sports:
|
||||||
regexMode = self.NORMAL_REGEX
|
regexMode = self.NORMAL_REGEX
|
||||||
|
|
||||||
self.compiled_regexes = OrderedDict()
|
self.compiled_regexes = {}
|
||||||
self._compile_regexes(regexMode)
|
self._compile_regexes(regexMode)
|
||||||
|
|
||||||
matches = []
|
matches = []
|
||||||
|
Loading…
Reference in New Issue
Block a user