diff --git a/sickbeard/tv.py b/sickbeard/tv.py index 095cfb6..f7514b1 100644 --- a/sickbeard/tv.py +++ b/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())