From e674f7c7df534e0b6719564732b1cb683225c370 Mon Sep 17 00:00:00 2001 From: wsuetholz Date: Sun, 5 Dec 2010 20:52:13 -0600 Subject: [PATCH] There was still a 2 second sleep between chapters for the fictonpress adapter.. Keep in mind that if you do a lot of downloading from fanfiction.net or fictionpress.com it is possible that your IP address could be locked without the sleep in place. --- fanficdownloader/fpcom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fanficdownloader/fpcom.py b/fanficdownloader/fpcom.py index 9aeef1ab..9fa05c52 100644 --- a/fanficdownloader/fpcom.py +++ b/fanficdownloader/fpcom.py @@ -246,7 +246,7 @@ class FPCom(FanfictionSiteAdapter): return urls def getText(self, url): - time.sleep( 2.0 ) + # time.sleep( 2.0 ) data = '' try: data = self.fetchUrl(url)