diff mercurial/localrepo.py @ 8995:7b19cda0fa10

commit: lose some pointless 'nothing changed' messages Move message from localrepo to commands. This drops confusing messages in subrepo, import, and rebase.
author Matt Mackall <mpm@selenic.com>
date Wed, 01 Jul 2009 01:16:19 -0500
parents 4a1187d3cb00
children 1fa80c5428b8 0b2b269ba3d0
line wrap: on
line diff
--- a/mercurial/localrepo.py	Wed Jul 01 01:05:24 2009 -0500
+++ b/mercurial/localrepo.py	Wed Jul 01 01:16:19 2009 -0500
@@ -860,7 +860,6 @@
             if (not force and not extra.get("close") and p2 == nullid
                 and not (changes[0] or changes[1] or changes[2])
                 and self[None].branch() == self['.'].branch()):
-                self.ui.status(_("nothing changed\n"))
                 return None
 
             ms = merge_.mergestate(self)