diff mercurial/hgweb/hgweb_mod.py @ 2876:cf86bbb8ed68

hgweb: repo.changes() is now called repo.status()
author Giorgos Keramidas <keramida@ceid.upatras.gr>
date Sun, 13 Aug 2006 18:01:44 +0300
parents 4ec58b157265
children 3848488244fc 26c37ebda1bb
line wrap: on
line diff
--- 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))