mirror of
https://github.com/RicterZ/nhentai.git
synced 2025-04-20 02:41:19 +02:00
fix #117
This commit is contained in:
parent
8183f3a7a9
commit
e2a1d79b1b
@ -33,7 +33,8 @@ def serialize_json(doujinshi, dir):
|
|||||||
def serialize_comicxml(doujinshi, dir):
|
def serialize_comicxml(doujinshi, dir):
|
||||||
with open(os.path.join(dir, 'ComicInfo.xml'), 'w') as f:
|
with open(os.path.join(dir, 'ComicInfo.xml'), 'w') 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">\n')
|
f.write('<ComicInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" '
|
||||||
|
'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">\n')
|
||||||
|
|
||||||
xml_write_simple_tag(f, 'Manga', 'Yes')
|
xml_write_simple_tag(f, 'Manga', 'Yes')
|
||||||
|
|
||||||
@ -70,7 +71,8 @@ def serialize_comicxml(doujinshi, dir):
|
|||||||
|
|
||||||
|
|
||||||
def xml_write_simple_tag(f, name, val, indent=1):
|
def xml_write_simple_tag(f, name, val, indent=1):
|
||||||
f.write(f'{" " * indent}<{name}>{escape(str(val))}</{name}>\n')
|
f.write('{}<{}>{}</{}>\n'.format(' ' * indent, name, escape(str(val)), name))
|
||||||
|
|
||||||
|
|
||||||
def merge_json():
|
def merge_json():
|
||||||
lst = []
|
lst = []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user