~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commit.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-06-19 02:45:33 UTC
  • mfrom: (2531.1.1 bzr.dev)
  • Revision ID: pqm@pqm.ubuntu.com-20070619024533-oand7e7ns9eyis9x
Merge the 0.17 fixes back into bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
    def _note(self, format, *args):
110
110
        """Output a message.
111
111
 
112
 
        Messages are output by writing directly to stderr instead of
113
 
        using bzrlib.trace.note(). The latter constantly updates the
114
 
        log file as we go causing an unnecessary performance hit.
115
 
 
116
 
        Subclasses may choose to override this method but need to be aware
117
 
        of its potential impact on performance.
 
112
        Subclasses may choose to override this method.
118
113
        """
119
 
        bzrlib.ui.ui_factory.clear_term()
120
 
        sys.stderr.write((format + "\n") % args)
 
114
        note(format, *args)
121
115
 
122
116
    def snapshot_change(self, change, path):
123
117
        if change == 'unchanged':