diff -r 2a4a0dc4fb85 -r 1de5ebfa5585 mercurial/commands.py --- a/mercurial/commands.py Thu Oct 29 19:03:13 2009 -0500 +++ b/mercurial/commands.py Thu Oct 29 19:03:16 2009 -0500 @@ -1338,7 +1338,7 @@ except error.LookupError: pass - for ctx in cmdutil.walkchangerevs(ui, repo, matchfn, opts, prep): + for ctx in cmdutil.walkchangerevs(repo, matchfn, opts, prep): rev = ctx.rev() parent = ctx.parents()[0].rev() for fn in sorted(revfiles.get(rev, [])): @@ -2068,7 +2068,7 @@ displayer.show(ctx, copies=copies) - for ctx in cmdutil.walkchangerevs(ui, repo, matchfn, opts, prep): + for ctx in cmdutil.walkchangerevs(repo, matchfn, opts, prep): if count != limit: if displayer.flush(ctx.rev()): count += 1