# HG changeset patch # User Giorgos Keramidas # Date 1155481304 -10800 # Node ID cf86bbb8ed68a548e2ef5b1c8cbc8cc8d6176c19 # Parent 3d6efcbbd1c9c3ed3c26a634406c4c24a72cbc22 hgweb: repo.changes() is now called repo.status() diff -r 3d6efcbbd1c9 -r cf86bbb8ed68 mercurial/hgweb/hgweb_mod.py --- a/mercurial/hgweb/hgweb_mod.py Sat Aug 12 16:40:12 2006 -0700 +++ b/mercurial/hgweb/hgweb_mod.py Sun Aug 13 18:01:44 2006 +0300 @@ -129,7 +129,7 @@ date1 = util.datestr(change1[2]) date2 = util.datestr(change2[2]) - modified, added, removed, deleted, unknown = r.changes(node1, node2) + modified, added, removed, deleted, unknown = r.status(node1, node2)[:5] if files: modified, added, removed = map(lambda x: filterfiles(files, x), (modified, added, removed))