build: Fix text encoding error ()

This commit is contained in:
Peter Shipley 2020-06-21 04:07:52 -07:00 committed by GitHub
parent 7b2f90f840
commit 04ef9d5e8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -112,6 +112,7 @@ repl += get_help_text('-F') + '\n'
repl += get_help_text('-M') + '\n'
repl += get_help_text('-r') + '\n'
repl += get_help_text('-w') + '\n'
repl = repl.encode('utf-8')
replace_block(r'```',
r'```', repl, 'README.md')