Mercurial > hg
changeset 9538:f96ee862aba0
i18n: remove unnecessary os.path.normpath call
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sat, 03 Oct 2009 18:58:25 +0200 |
parents | 460e410c39be |
children | c904e76e3834 |
files | mercurial/i18n.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/i18n.py Sun Oct 04 10:17:01 2009 +0200 +++ b/mercurial/i18n.py Sat Oct 03 18:58:25 2009 +0200 @@ -16,7 +16,7 @@ base = os.path.dirname(module) for dir in ('.', '..'): - localedir = os.path.normpath(os.path.join(base, dir, 'locale')) + localedir = os.path.join(base, dir, 'locale') if os.path.isdir(localedir): break