diff --git a/fanficdownloader/adapters/adapter_test1.py b/fanficdownloader/adapters/adapter_test1.py index 840d0930..bfb8dbe0 100644 --- a/fanficdownloader/adapters/adapter_test1.py +++ b/fanficdownloader/adapters/adapter_test1.py @@ -106,8 +106,8 @@ Some more longer description. "I suck at summaries!" "Better than it sounds!" if self.story.getMetadata('storyId') == '667': raise exceptions.FailedToDownload("Error downloading Chapter: %s!" % url) - if self.story.getMetadata('storyId') == '670' and self.getConfig('slow_down_sleep_time'): - time.sleep(float(self.getConfig('slow_down_sleep_time'))) + if self.story.getMetadata('storyId') == '670': + time.sleep(2.0) if "chapter=1" in url : @@ -121,7 +121,7 @@ Some more longer description. "I suck at summaries!" "Better than it sounds!"
http://test1.com?sid=667 - raises FailedToDownload on chapter 1
http://test1.com?sid=668 - raises FailedToLogin unless username='Me'
http://test1.com?sid=669 - Succeeds with Updated Date=now
-http://test1.com?sid=670 - Succeeds, but applies slow_down_sleep_time
+http://test1.com?sid=670 - Succeeds, but sleeps 2sec on each chapter
And other storyId will succeed with the same output.
''' diff --git a/status.html b/status.html index 58325301..c65342de 100644 --- a/status.html +++ b/status.html @@ -54,6 +54,7 @@ {{ fic.failure }} {% endif %} {% if not fic.completed and not fic.failure %} +Not done yet. This page will periodically poll to see if your story has finished.
Processing {{ fic.title }} by {{ fic.author }} ({{ fic.format }}) {% endif %}