mirror of
https://github.com/tianocore/edk2
synced 2026-08-27 00:23:19 -04:00
10 lines
196 B
Python
10 lines
196 B
Python
|
|
import sys
|
||
|
|
import locale
|
||
|
|
|
||
|
|
if sys.platform == "darwin":
|
||
|
|
DefaultLocal = locale.getdefaultlocale()[1]
|
||
|
|
if DefaultLocal is None:
|
||
|
|
DefaultLocal = 'UTF8'
|
||
|
|
sys.setdefaultencoding(DefaultLocal)
|
||
|
|
|