Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Prefer 'encoding' to 'text'
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
  • Loading branch information
mhsmith and AA-Turner committed Apr 24, 2025
commit 24b082f74ea346408effe7b9546ecf4f52737fe3
2 changes: 1 addition & 1 deletion Android/android.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def android_env(host):
f"PREFIX={prefix}; "
f". {env_script}; "
f"export",
check=True, shell=True, capture_output=True, text=True,
check=True, shell=True, capture_output=True, encoding='utf-8',
).stdout

env = {}
Expand Down
Loading