diff options
Diffstat (limited to 'Lib/locale.py')
-rw-r--r-- | Lib/locale.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/locale.py b/Lib/locale.py index 9ae981f..8a26744 100644 --- a/Lib/locale.py +++ b/Lib/locale.py @@ -397,7 +397,7 @@ if sys.platform in ('win32', 'darwin', 'mac'): def getpreferredencoding(do_setlocale = True): """Return the charset that the user is likely using.""" import _locale - return _locale.getdefaultlocale()[1] + return _locale._getdefaultlocale()[1] else: # On Unix, if CODESET is available, use that. try: |