Mercurial > hg-stable
diff mercurial/util.py @ 3769:96095d9ff1f8
Add encoding detection
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Sun, 03 Dec 2006 16:16:33 -0600 |
parents | 1861fa38a6a7 |
children | f96c158ea3a3 |
line wrap: on
line diff
--- a/mercurial/util.py Sat Dec 02 22:41:05 2006 +0100 +++ b/mercurial/util.py Sun Dec 03 16:16:33 2006 -0600 @@ -15,7 +15,9 @@ from i18n import gettext as _ from demandload import * demandload(globals(), "cStringIO errno getpass popen2 re shutil sys tempfile") -demandload(globals(), "os threading time calendar ConfigParser") +demandload(globals(), "os threading time calendar ConfigParser locale") + +_encoding = os.environ.get("HGENCODING") or locale.getpreferredencoding() # used by parsedate defaultdateformats = ('%Y-%m-%d %H:%M:%S', '%Y-%m-%d %H:%M',