# HG changeset patch # User Matt Mackall # Date 1138486674 -46800 # Node ID beb7da710c8a8cb560b64cc7c5150339f824cfae # Parent 80640ef93aec17ffb6c2826076c99f7960e4a33f hgweb: fix breakage on manifest subdirs from path cleaning diff -r 80640ef93aec -r beb7da710c8a mercurial/hgweb.py --- a/mercurial/hgweb.py Sun Jan 29 10:10:16 2006 +1300 +++ b/mercurial/hgweb.py Sun Jan 29 11:17:54 2006 +1300 @@ -580,6 +580,8 @@ files = {} p = path[1:] + if p and p[-1] != "/": + p += "/" l = len(p) for f,n in mf.items():