diff -r 939de0d20a67 -r b2d9e553cdc8 mercurial/commands.py --- a/mercurial/commands.py Wed Mar 07 15:26:00 2007 -0300 +++ b/mercurial/commands.py Wed Mar 07 15:26:03 2007 -0300 @@ -1535,6 +1535,7 @@ setremoteconfig(ui, opts) other = hg.repository(ui, source) + ui.status(_('comparing with %s\n') % source) incoming = repo.findincoming(other, force=opts["force"]) if not incoming: try: @@ -1819,6 +1820,7 @@ revs = [repo.lookup(rev) for rev in opts['rev']] other = hg.repository(ui, dest) + ui.status(_('comparing with %s\n') % dest) o = repo.findoutgoing(other, force=opts['force']) if not o: ui.status(_("no changes found\n"))