Skip to content
Snippets Groups Projects
Commit 275e6459 authored by Autumn Ashton's avatar Autumn Ashton :frog:
Browse files

Merge branch 'windows' into 'windows'

Write output file with UTF-8

See merge request JoshuaAshton/libdisplay-info!4
parents d39344f4 127c2767
Branches windows
No related tags found
1 merge request!4Write output file with UTF-8
Checking pipeline status
......@@ -53,7 +53,7 @@ with open(infile, mode='r', encoding='utf-8') as f:
records[pnpid] = escape_for_c(name.strip())
with open(outfile, 'w') as f:
with open(outfile, mode='w', encoding='utf-8') as f:
f.write(
f'''
#include <string.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment