mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-01-05 23:56:08 +01:00
Fix for author including <b>Updated</b> in desc in adapter_ashwindersycophanthexcom.
This commit is contained in:
parent
97f7eb1564
commit
a452163152
1 changed files with 4 additions and 2 deletions
|
|
@ -194,8 +194,10 @@ class AshwinderSycophantHexComAdapter(BaseSiteAdapter):
|
|||
val = val.nextSibling
|
||||
self.setDescription(url,svalue)
|
||||
|
||||
# <span class="label">Rated:</span> NC-17<br /> etc
|
||||
labels = info.findAll('b')
|
||||
## <td><span class="sb"><b>Published:</b> 04/08/2007</td>
|
||||
|
||||
## one story had <b>Updated...</b> in the description. Restrict to sub-table
|
||||
labels = info.find('table').findAll('b')
|
||||
for labelspan in labels:
|
||||
value = labelspan.nextSibling
|
||||
label = stripHTML(labelspan)
|
||||
|
|
|
|||
Loading…
Reference in a new issue