Mercurial > public > mercurial-scm > hg-stable
diff mercurial/hgweb/hgweb_mod.py @ 6776:39319a457dda
merge with mpm
author | Dirkjan Ochtman <dirkjan@ochtman.nl> |
---|---|
date | Sat, 28 Jun 2008 09:28:01 +0200 |
parents | 0dbb56e90a71 f6c00b17387c |
children | 44c5157474e7 |
line wrap: on
line diff
--- a/mercurial/hgweb/hgweb_mod.py Thu Jun 26 13:37:47 2008 -0700 +++ b/mercurial/hgweb/hgweb_mod.py Sat Jun 28 09:28:01 2008 +0200 @@ -306,8 +306,8 @@ linenumber="% 8s" % lineno) r = self.repo - c1 = r.changectx(node1) - c2 = r.changectx(node2) + c1 = r[node1] + c2 = r[node2] date1 = util.datestr(c1.date()) date2 = util.datestr(c2.date())