mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-05-01 11:24:35 +02:00
Strip leading newline so it doesn't (falsely) show up in appengine logs as error.
This commit is contained in:
parent
666e9666cd
commit
1426626d0a
1 changed files with 1 additions and 1 deletions
|
|
@ -135,7 +135,7 @@ class Whofic(FanfictionSiteAdapter):
|
|||
metadata = a.findParent('td')
|
||||
metadatachunks = metadata.__str__('utf8').split('<br />')
|
||||
# process metadata for this story.
|
||||
self.storyDescription = metadatachunks[1]
|
||||
self.storyDescription = metadatachunks[1].strip()
|
||||
|
||||
# the stuff with ' - ' separators
|
||||
moremeta = metadatachunks[2]
|
||||
|
|
|
|||
Loading…
Reference in a new issue