mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2025-12-16 05:43:59 +01:00
Split info line in ffnet by ' - ' instead of just '-' so Sci-Fi doesn't become just 'Sci'. fpcom already does.
This commit is contained in:
parent
e05749678e
commit
d95c72f447
1 changed files with 1 additions and 1 deletions
|
|
@ -195,7 +195,7 @@ class FFNet(FanfictionSiteAdapter):
|
|||
self.storyRating = unicode(s2.a.string).strip()
|
||||
logging.debug('self.storyRating=%s' % self.storyRating)
|
||||
logging.debug('s2.a=%s' % s2.a)
|
||||
s3 = l.split('-')
|
||||
s3 = l.split(' - ')
|
||||
logging.debug('s3=%s' % s3)
|
||||
if len(s3) > 0:
|
||||
if s3[1].find("Reviews: <a href=") != -1:
|
||||
|
|
|
|||
Loading…
Reference in a new issue