mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-04-29 02:12:10 +02:00
Different detect StoryDoesNotExist string for ficwad.com.
This commit is contained in:
parent
56401e6dfa
commit
ee462d3742
1 changed files with 1 additions and 1 deletions
|
|
@ -93,7 +93,7 @@ class FicwadComSiteAdapter(BaseSiteAdapter):
|
|||
try:
|
||||
data = self._fetchUrl(url)
|
||||
# non-existent/removed story urls get thrown to the front page.
|
||||
if "<h2>Welcome to FicWad</h2>" in data:
|
||||
if "<h4>Featured Story</h4>" in data:
|
||||
raise exceptions.StoryDoesNotExist(self.url)
|
||||
soup = self.make_soup(data)
|
||||
except urllib2.HTTPError, e:
|
||||
|
|
|
|||
Loading…
Reference in a new issue