mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-05-07 12:02:25 +02:00
Fix for offsetting unicode in mediaminer.org title
This commit is contained in:
parent
1435ce963c
commit
3f06b86ef0
1 changed files with 1 additions and 1 deletions
|
|
@ -122,7 +122,7 @@ class MediaMinerOrgSiteAdapter(BaseSiteAdapter):
|
|||
|
||||
## title:
|
||||
## <h1 id="post-title">A, A' Fan Fiction ❯ Mmmmm</h1>
|
||||
titletext = stripHTML(soup.find("h1",{"id":"post-title"}))
|
||||
titletext = unicode(stripHTML(soup.find("h1",{"id":"post-title"})))
|
||||
titletext = titletext[titletext.index(u'❯')+2:]
|
||||
# print("title:(%s)"%titletext)
|
||||
self.story.setMetadata('title',titletext)
|
||||
|
|
|
|||
Loading…
Reference in a new issue