mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-02 17:33:37 +00:00
Fixed issue #20
This commit is contained in:
parent
32c029c3cf
commit
fb85c6e50e
1 changed files with 2 additions and 2 deletions
|
@ -2050,11 +2050,11 @@ class TVEpisode(object):
|
|||
logger.DEBUG)
|
||||
return
|
||||
|
||||
related_files = postProcessor.PostProcessor(self.location, indexer=self.indexer).list_associated_files(
|
||||
related_files = postProcessor.PostProcessor(self.location).list_associated_files(
|
||||
self.location)
|
||||
|
||||
if self.show.subtitles and sickbeard.SUBTITLES_DIR != '':
|
||||
related_subs = postProcessor.PostProcessor(self.location, indexer=self.indexer).list_associated_files(
|
||||
related_subs = postProcessor.PostProcessor(self.location).list_associated_files(
|
||||
sickbeard.SUBTITLES_DIR, subtitles_only=True)
|
||||
absolute_proper_subs_path = ek.ek(os.path.join, sickbeard.SUBTITLES_DIR, self.formatted_filename())
|
||||
|
||||
|
|
Loading…
Reference in a new issue