Fix 'In Progress' to 'In-Progress' like all the others.

This commit is contained in:
Jim Miller
2016-02-09 10:25:43 -06:00
parent 7a08e3afdd
commit 9f511dad8d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -171,7 +171,7 @@ class FanFiktionDeAdapter(BaseSiteAdapter):
if head.find('span',title='Fertiggestellt'):
self.story.setMetadata('status', 'Completed')
else:
self.story.setMetadata('status', 'In Progress')
self.story.setMetadata('status', 'In-Progress')
#find metadata on the author's page
asoup = self.make_soup(self._fetchUrl("http://"+self.getSiteDomain()+"?a=q&a1=v&t=nickdetailsstories&lbi=stories&ar=0&nick="+self.story.getMetadata('authorId')))
+1 -1
View File
@@ -193,7 +193,7 @@ class FicBookNetAdapter(BaseSiteAdapter):
if table.find('span', {'style' : 'color: green'}):
self.story.setMetadata('status', 'Completed')
else:
self.story.setMetadata('status', 'In Progress')
self.story.setMetadata('status', 'In-Progress')
tags = table.findAll('b')