From 67e748e0070de793fd93bd5115cdec665e4857f2 Mon Sep 17 00:00:00 2001 From: cryzed Date: Thu, 11 Dec 2014 16:47:09 +0100 Subject: [PATCH] Removed obsolete code --- fanficdownloader/adapters/adapter_fictionmaniatv.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/fanficdownloader/adapters/adapter_fictionmaniatv.py b/fanficdownloader/adapters/adapter_fictionmaniatv.py index 6be384c9..6e3f6c46 100644 --- a/fanficdownloader/adapters/adapter_fictionmaniatv.py +++ b/fanficdownloader/adapters/adapter_fictionmaniatv.py @@ -17,16 +17,6 @@ def _get_query_data(url): return dict((key, data[0]) for key, data in query_data.items()) -def _yield_next_siblings(tag): - # yields Tag _and_ NavigableString siblings from the given tag. The - # BeautifulSoup findNextSiblings() method for some reasons only returns either - # NavigableStrings _or_ Tag objects, not both. - sibling = tag.nextSibling - while sibling: - yield sibling - sibling = sibling.nextSibling - - class FictionManiaTVAdapter(BaseSiteAdapter): SITE_ABBREVIATION = 'fmt' SITE_DOMAIN = 'fictionmania.tv'