hgweb: repo.changes() is now called repo.status()
authorGiorgos Keramidas <keramida@ceid.upatras.gr>
Sun, 13 Aug 2006 18:01:44 +0300
changeset 2876 cf86bbb8ed68
parent 2875 3d6efcbbd1c9
child 2877 0ffca0cb9f4b
hgweb: repo.changes() is now called repo.status()
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))