Mercurial > public > mercurial-scm > hg-stable
diff mercurial/commands.py @ 4162:b2d9e553cdc8
incoming/outgoing: print the name of the other repo
author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
---|---|
date | Wed, 07 Mar 2007 15:26:03 -0300 |
parents | d8515e374204 |
children | ba51a8225a60 |
line wrap: on
line diff
--- 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"))