Mercurial > hg-stable
changeset 1993:fb6ca9801d04
show message if no changes found on incoming
author | TK Soh <teekaysoh@yahoo.com> |
---|---|
date | Fri, 24 Mar 2006 08:34:56 +0100 |
parents | ea8345a7a29d |
children | 78ef83c9e9e1 |
files | mercurial/commands.py |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Fri Mar 24 08:27:24 2006 +0100 +++ b/mercurial/commands.py Fri Mar 24 08:34:56 2006 +0100 @@ -1802,6 +1802,7 @@ other = hg.repository(ui, source) incoming = repo.findincoming(other, force=opts["force"]) if not incoming: + ui.status(_("no changes found\n")) return cleanup = None