mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2025-12-07 17:33:05 +01: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:
|
else:
|
||||||
description = str(description)
|
description = str(description)
|
||||||
if description is not None and len(description) > 0:
|
if description is not None and len(description) > 0:
|
||||||
description = description.replace ('\\', '\'').replace('\\\"', '\"')
|
description = description.replace ('\\\'', '\'').replace('\\\"', '\"')
|
||||||
description = removeEntities(description)
|
description = removeEntities(description)
|
||||||
else:
|
else:
|
||||||
description = ' '
|
description = ' '
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue