From f8776e118a42aae0596227bd7ffe151d778ea071 Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Sat, 24 Aug 2013 22:38:30 -0500 Subject: [PATCH] Remove superfluous Fanfiction category set in adapter. --- fanficdownloader/adapters/adapter_dokugacom.py | 1 - 1 file changed, 1 deletion(-) diff --git a/fanficdownloader/adapters/adapter_dokugacom.py b/fanficdownloader/adapters/adapter_dokugacom.py index 6a21e80..e59f8f1 100644 --- a/fanficdownloader/adapters/adapter_dokugacom.py +++ b/fanficdownloader/adapters/adapter_dokugacom.py @@ -205,7 +205,6 @@ class DokugaComAdapter(BaseSiteAdapter): a=div.text.split('Category: ') if len(a) == 2: self.story.addToList('category', a[1].split('&')[0]) - self.story.addToList('category', 'Fanfiction') a=div.text.split('Created: ') if len(a) == 2: self.story.setMetadata('datePublished', makeDate(stripHTML(a[1].split('&')[0]), self.dateformat))