hgwebdir: change os.sep in the name of repos to "/"
authorAlexis S. L. Carvalho <alexis@cecm.usp.br>
Sun, 05 Aug 2007 22:36:39 -0300
changeset 5063 142a07e758c8
parent 5062 3d35c8cb5eb4
child 5064 ccdc8db02bdf
hgwebdir: change os.sep in the name of repos to "/"
mercurial/hgweb/hgwebdir_mod.py
--- a/mercurial/hgweb/hgwebdir_mod.py	Sat Aug 04 22:25:12 2007 +0200
+++ b/mercurial/hgweb/hgwebdir_mod.py	Sun Aug 05 22:36:39 2007 -0300
@@ -17,7 +17,8 @@
 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