Browse Source

Fix rename of excluded metadata.

pull/171/head
JackDandy 10 years ago
parent
commit
d945bd18e4
  1. 1
      CHANGES.md
  2. 2
      sickbeard/tv.py

1
CHANGES.md

@ -19,6 +19,7 @@
* Fix displayShow topmenu variable to point to a valid menu item * Fix displayShow topmenu variable to point to a valid menu item
* Change displayShow scene exception separator to a comma for neater appearance * Change displayShow scene exception separator to a comma for neater appearance
* Remove non english subtitle providers * Remove non english subtitle providers
* Fix rename of excluded metadata
[develop changelog] [develop changelog]

2
sickbeard/tv.py

@ -2441,7 +2441,7 @@ class TVEpisode(object):
return return
related_files = postProcessor.PostProcessor(self.location).list_associated_files( related_files = postProcessor.PostProcessor(self.location).list_associated_files(
self.location) self.location, base_name_only=True)
if self.show.subtitles and sickbeard.SUBTITLES_DIR != '': if self.show.subtitles and sickbeard.SUBTITLES_DIR != '':
related_subs = postProcessor.PostProcessor(self.location).list_associated_files(sickbeard.SUBTITLES_DIR, related_subs = postProcessor.PostProcessor(self.location).list_associated_files(sickbeard.SUBTITLES_DIR,

Loading…
Cancel
Save