diff --git a/utils/generate_zen_content.py b/utils/generate_zen_content.py index 31fe8af4af..cb742d308e 100644 --- a/utils/generate_zen_content.py +++ b/utils/generate_zen_content.py @@ -23,5 +23,5 @@ ``` """ -with DESTINATION_PATH.open(mode="w") as destination: +with DESTINATION_PATH.open(mode="w", encoding="utf-8", newline="\n") as destination: destination.write(content)