audk/BaseTools/Source/Python/sitecustomize.py
2009-12-29 06:16:53 +00:00

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)