Skip to content

Commit

Permalink
Fix 'character maps to <undefined>' issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
alx00x committed Jul 25, 2021
1 parent ebf6ea8 commit a239a4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lazydocs/generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def to_md_file(
)

print("Writing {}.".format(md_file))
with open(os.path.join(out_path, md_file), "w") as f:
with open(os.path.join(out_path, md_file), "w", encoding="utf-8") as f:
f.write(markdown_str)


Expand Down

0 comments on commit a239a4b

Please sign in to comment.