mirror of
https://github.com/RicterZ/nhentai.git
synced 2025-04-20 02:41:19 +02:00
Fix UnicodeEncodeError
This commit is contained in:
parent
606c5e0ffd
commit
c66ba730d3
1
.gitignore
vendored
1
.gitignore
vendored
@ -7,3 +7,4 @@ dist/
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
output/
|
output/
|
||||||
venv/
|
venv/
|
||||||
|
.vscode/
|
||||||
|
@ -32,7 +32,7 @@ def serialize_json(doujinshi, dir):
|
|||||||
|
|
||||||
def serialize_comic_xml(doujinshi, dir):
|
def serialize_comic_xml(doujinshi, dir):
|
||||||
from iso8601 import parse_date
|
from iso8601 import parse_date
|
||||||
with open(os.path.join(dir, 'ComicInfo.xml'), 'w') as f:
|
with open(os.path.join(dir, 'ComicInfo.xml'), 'w', encoding="utf-8") as f:
|
||||||
f.write('<?xml version="1.0" encoding="utf-8"?>\n')
|
f.write('<?xml version="1.0" encoding="utf-8"?>\n')
|
||||||
f.write('<ComicInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" '
|
f.write('<ComicInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" '
|
||||||
'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">\n')
|
'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">\n')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user