From 2b0b4ca2af310afec47e13764ee8bf0e6f4d61a1 Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Mon, 16 Sep 2013 18:55:02 -0500 Subject: [PATCH] Don't include empty string tags. --- fanficdownloader/story.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fanficdownloader/story.py b/fanficdownloader/story.py index f0eb30e..7def636 100644 --- a/fanficdownloader/story.py +++ b/fanficdownloader/story.py @@ -487,6 +487,8 @@ class Story(Configurable): if None in subjectset: subjectset.remove(None) + if '' in subjectset: + subjectset.remove('') return list(subjectset | set(self.getConfigList("extratags")))