|
From: <fli...@li...> - 2026-04-27 15:49:50
|
unknown user pushed a commit to branch release/2024.1 in repository fgmeta. SF URL: http://sourceforge.net/p/flightgear/fgmeta/ci/2346fa25192cfcfa247e65ac0234f186ed48861e/ Commit: 2346fa25192cfcfa247e65ac0234f186ed48861e Author: James Turner Committer: James Turner AuthorDate: Thu Apr 23 14:05:49 2026 +0100 Apply 1 suggestion(s) to 1 file(s) Co-authored-by: Florent Rougon <f.r...@fr...> --- release_builder/create_shared_models_manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release_builder/create_shared_models_manifest.py b/release_builder/create_shared_models_manifest.py index 1162fe5..6b82e9a 100755 --- a/release_builder/create_shared_models_manifest.py +++ b/release_builder/create_shared_models_manifest.py @@ -94,7 +94,7 @@ def main(): manifest = {"schemaVersion": 1, "files": files} output_path = os.path.join(fgdata_dir, "SharedModelsManifest.json") - with open(output_path, "w", encoding="utf-8") as f: + with open(output_path, "w", encoding="ascii") as f: # Note we keep the default value (True) of ensure_ascii. # File names in FGData and TerraSync should be ASCII only, # no extended UTF-8 characters, for now. |