From fb85c6e50e3e53bcd891bafbf0f9851b5d36d012 Mon Sep 17 00:00:00 2001 From: echel0n Date: Fri, 28 Mar 2014 21:41:35 -0700 Subject: [PATCH] Fixed issue #20 --- sickbeard/tv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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())