Plugin wasn't including extratags in calibre tags.

This commit is contained in:
Jim Miller
2011-12-28 13:54:52 -06:00
parent 851d3df751
commit 102a55131d
2 changed files with 6 additions and 3 deletions
+3 -3
View File
@@ -104,9 +104,9 @@ Some more longer description. "I suck at summaries!" "Better than it sounds!"
('Chapter 1, Xenos on Cinnabar',self.url+"&chapter=2"),
('Chapter 2, Sinmay on Kintikin',self.url+"&chapter=3"),
('Chapter 3, Over Cinnabar',self.url+"&chapter=4"),
# ('Chapter 4',self.url+"&chapter=5"),
# ('Chapter 5',self.url+"&chapter=6"),
# ('Chapter 6',self.url+"&chapter=6"),
('Chapter 4',self.url+"&chapter=5"),
('Chapter 5',self.url+"&chapter=6"),
('Chapter 6',self.url+"&chapter=6"),
# ('Chapter 7',self.url+"&chapter=6"),
# ('Chapter 8',self.url+"&chapter=6"),
# ('Chapter 9',self.url+"&chapter=6"),
+3
View File
@@ -258,6 +258,9 @@ class BaseStoryWriter(Configurable):
if name in self.getConfigList("include_subject_tags"):
for tag in lst:
subjectset.add(tag)
for tag in self.getConfigList("extratags"):
subjectset.add(tag)
return subjectset