changeset 9528:f96ee862aba0

i18n: remove unnecessary os.path.normpath call
author Martin Geisler <mg@lazybytes.net>
date Sat, 03 Oct 2009 18:58:25 +0200 (2009-10-03)
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
+++ b/mercurial/i18n.py
@@ -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