# HG changeset patch # User Lee Cantey # Date 1141845639 28800 # Node ID 7a09785d3237af015d35dc98de8e23e327546506 # Parent 97f07d311a50ee823f29b0f1881c03a1a0457790 Fix manifest view on Windows diff -r 97f07d311a50 -r 7a09785d3237 mercurial/hgweb.py --- a/mercurial/hgweb.py Wed Mar 08 06:20:32 2006 +0100 +++ b/mercurial/hgweb.py Wed Mar 08 11:20:39 2006 -0800 @@ -851,7 +851,7 @@ 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