We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57775a0 commit 9e443bfCopy full SHA for 9e443bf
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