sitecustomize.py 390 B

123456789101112131415161718
  1. """!
  2. Default encoding for wxPython GRASS GUI.
  3. (C) 2014 by the GRASS Development Team
  4. This program is free software under the GNU General Public License
  5. (>=v2). Read the file COPYING that comes with GRASS for details.
  6. @author Huidae Cho <grass4u gmail.com>
  7. """
  8. import os
  9. import sys
  10. lang = os.environ["LC_CTYPE"].split(".")
  11. if len(lang) == 2:
  12. sys.setdefaultencoding(lang[1].lower())