changeset 155 | 083c38bdfa64 |
parent 142 | 529bf610092e |
parent 153 | e8a360cd5a9f |
child 156 | 32ce2c5d4d25 |
--- a/mercurial/hgweb.py Wed May 25 08:53:34 2005 -0800 +++ b/mercurial/hgweb.py Wed May 25 08:54:54 2005 -0800 @@ -516,8 +516,8 @@ if not args.has_key('cmd') or args['cmd'][0] == 'changelog': hi = self.repo.changelog.count() - if args.has_key('pos'): - hi = int(args['pos'][0]) + if args.has_key('rev'): + hi = int(args['rev'][0]) write(self.changelog(hi))