Initialize python's locale system on application start

This commit is contained in:
Kovid Goyal 2008-04-01 23:06:26 +00:00
parent 7ec93d9f43
commit a85ac190b7

View File

@ -26,6 +26,8 @@ iswindows = 'win32' in sys.platform.lower() or 'win64' in sys.platform.lower()
isosx = 'darwin' in sys.platform.lower()
islinux = not(iswindows or isosx)
locale.setlocale(locale.LC_ALL, '')
def osx_version():
if isosx:
import platform