mercurial/hgweb.py
changeset 153 e8a360cd5a9f
parent 142 529bf610092e
child 155 083c38bdfa64
--- a/mercurial/hgweb.py	Tue May 24 07:33:12 2005 -0700
+++ b/mercurial/hgweb.py	Tue May 24 07:42:05 2005 -0700
@@ -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))