# HG changeset patch # User TK Soh # Date 2006-03-24 07:34:56 # Node ID fb6ca9801d04a28b6f5a91fd4c924f45fd9f7d4c # Parent ea8345a7a29d40159ed94967852a9e87da328c1d show message if no changes found on incoming diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -1802,6 +1802,7 @@ def incoming(ui, repo, source="default", other = hg.repository(ui, source) incoming = repo.findincoming(other, force=opts["force"]) if not incoming: + ui.status(_("no changes found\n")) return cleanup = None