We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8588a3c + 9e443bf commit 6301cffCopy full SHA for 6301cff
1 file changed
pythonforandroid/logger.py
@@ -8,6 +8,9 @@
8
from collections import defaultdict
9
from colorama import Style as Colo_Style, Fore as Colo_Fore
10
11
+import codecs
12
+stdout = codecs.getwriter('utf8')(stdout)
13
+stderr = codecs.getwriter('utf8')(stderr)
14
15
# monkey patch to show full output
16
sh.ErrorReturnCode.truncate_cap = 999999
0 commit comments