We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb6d65e commit 511f6deCopy full SHA for 511f6de
sphinx_automodapi/automodsumm.py
@@ -291,7 +291,7 @@ def process_automodsumm_generation(app):
291
if app.config.automodsumm_writereprocessed:
292
if lines: # empty list means no automodsumm entry is in the file
293
outfn = os.path.join(app.srcdir, sfn) + '.automodsumm'
294
- with open(outfn, 'w') as f:
+ with open(outfn, 'w', encoding='utf8') as f:
295
for l in lines: # noqa: E741
296
f.write(l)
297
f.write('\n')
0 commit comments