Mercurial > public > mercurial-scm > hg-stable
diff mercurial/commands.py @ 1034:8dbbea5bc844
Fix help output, and a few broken tests.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Wed, 24 Aug 2005 13:26:45 -0700 |
parents | 503aaf19a040 |
children | c0a1abf562eb |
line wrap: on
line diff
--- a/mercurial/commands.py Wed Aug 24 12:50:11 2005 -0700 +++ b/mercurial/commands.py Wed Aug 24 13:26:45 2005 -0700 @@ -896,6 +896,8 @@ def bump(self, rev): self.rev = rev self.hunk[rev] = [] + def note(self, *args): + if self.verbose: self.write(*args) def status(self, *args): if not self.quiet: self.write(*args) def write(self, *args):