changeset 1864:7a09785d3237

Fix manifest view on Windows
author Lee Cantey <lcantey@gmail.com>
date Wed, 08 Mar 2006 11:20:39 -0800
parents 97f07d311a50
children 1ed809a2104e
files mercurial/hgweb.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/hgweb.py
+++ b/mercurial/hgweb.py
@@ -851,7 +851,7 @@ class hgweb(object):
 
     def run(self, req=hgrequest()):
         def clean(path):
-            p = os.path.normpath(path)
+            p = util.normpath(path)
             if p[:2] == "..":
                 raise "suspicious path"
             return p