mercurial/hgweb/hgwebdir_mod.py
changeset 5078 142a07e758c8
parent 4709 53eca35c3aeb
child 5082 79373ec3f27d
child 5289 ed6df6b1c29a
--- a/mercurial/hgweb/hgwebdir_mod.py
+++ b/mercurial/hgweb/hgwebdir_mod.py
@@ -17,7 +17,8 @@ from hgweb_mod import hgweb
 class hgwebdir(object):
     def __init__(self, config, parentui=None):
         def cleannames(items):
-            return [(name.strip(os.sep), path) for name, path in items]
+            return [(util.pconvert(name.strip(os.sep)), path)
+                    for name, path in items]
 
         self.parentui = parentui
         self.motd = None