Browse Source

Fixed issue #20

tags/release_0.1.0
echel0n 11 years ago
parent
commit
fb85c6e50e
  1. 4
      sickbeard/tv.py

4
sickbeard/tv.py

@ -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…
Cancel
Save