mirror of https://github.com/acidanthera/audk.git
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)
|
||
|
|