mirror of
https://github.com/acidanthera/audk.git
synced 2025-04-08 17:05:09 +02:00
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9623 6f19259b-4bc3-4df7-8a09-765794883524
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)
|
|
|