]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/msw/_core.py
add default action methods
[wxWidgets.git] / wxPython / src / msw / _core.py
index 156109497fb23b4122412c7fec2748bb6c6748c6..663d58586d95465b658b7ff3ec5221dacebe40a0 100644 (file)
@@ -11229,7 +11229,10 @@ if RELEASE_VERSION != _core_.RELEASE_VERSION:
 # http://www.alanwood.net/demos/charsetdiffs.html for differences
 # between the common latin/roman encodings.
 import locale
-default = locale.getdefaultlocale()[1]
+try:
+    default = locale.getdefaultlocale()[1]
+except ValueError:
+    default = "iso8859-1"
 if default:
     wx.SetDefaultPyEncoding(default)
 del default