mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-24 11:45:27 +01:00
ff099df45a
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
17 lines
369 B
Python
Executable File
17 lines
369 B
Python
Executable File
## @file
|
|
#
|
|
#
|
|
# Copyright (c) 2009 - 2014, Apple Inc. All rights reserved.<BR>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
import sys
|
|
import locale
|
|
|
|
if sys.platform == "darwin":
|
|
DefaultLocal = locale.getdefaultlocale()[1]
|
|
if DefaultLocal is None:
|
|
DefaultLocal = 'UTF8'
|
|
if sys.version_info[0] < 3:
|
|
sys.setdefaultencoding(DefaultLocal)
|
|
|