mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-04-26 17:02:36 +02:00
Fix desc escaping. <sigh>
This commit is contained in:
parent
26f6ddabd9
commit
df6b85b723
1 changed files with 1 additions and 1 deletions
|
|
@ -273,7 +273,7 @@ class EPubFanficWriter(FanficWriter):
|
|||
else:
|
||||
description = str(description)
|
||||
if description is not None and len(description) > 0:
|
||||
description = description.replace ('\\', '\'').replace('\\\"', '\"')
|
||||
description = description.replace ('\\\'', '\'').replace('\\\"', '\"')
|
||||
description = removeEntities(description)
|
||||
else:
|
||||
description = ' '
|
||||
|
|
|
|||
Loading…
Reference in a new issue