This commit is contained in:
Kovid Goyal 2022-03-18 10:51:11 +05:30
parent 7ce6e3ef0b
commit 3627a442be
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -220,7 +220,7 @@ def remove_indents(txt):
''' '''
Remove whitespace at the beginning of each line. Remove whitespace at the beginning of each line.
''' '''
return '\n'.join([l.lstrip() for l in txt.splitlines()]) return '\n'.join(l.lstrip() for l in txt.splitlines())
def opf_writer(path, opf_name, manifest, spine, mi): def opf_writer(path, opf_name, manifest, spine, mi):