diff mercurial/hgweb/hgweb_mod.py @ 2875: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 26c37ebda1bb 3848488244fc
line wrap: on
line diff
--- a/mercurial/hgweb/hgweb_mod.py
+++ b/mercurial/hgweb/hgweb_mod.py
@@ -129,7 +129,7 @@ class hgweb(object):
         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))