# HG changeset patch # User Brendan Cully # Date 1160868022 25200 # Node ID be628f1cd3f44e6e337c6c01f15922f5365e8fa9 # Parent 22a106cb565002beaa727acccefbeaf565deb608 hgweb: really fix parent/child rename links diff -r 22a106cb5650 -r be628f1cd3f4 mercurial/hgweb/hgweb_mod.py --- a/mercurial/hgweb/hgweb_mod.py Sat Oct 14 16:07:52 2006 -0700 +++ b/mercurial/hgweb/hgweb_mod.py Sat Oct 14 16:20:22 2006 -0700 @@ -71,8 +71,8 @@ return for s in siblings: d = {'node': hex(s.node()), 'rev': s.rev()} - if hasattr(s, 'file'): - d['file'] = s.file() + if hasattr(s, 'path'): + d['file'] = s.path() d.update(args) yield d