# HG changeset patch # User Lee Cantey # Date 1141845639 28800 # Node ID 7a09785d3237af015d35dc98de8e23e327546506 # Parent 97f07d311a50ee823f29b0f1881c03a1a0457790 Fix manifest view on Windows diff --git a/mercurial/hgweb.py b/mercurial/hgweb.py --- 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