~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-02-01 03:46:12 UTC
  • mfrom: (3209.1.1 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20080201034612-xl88s8i45res3pm2
Make pull --quiet more quiet (James Westby)

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
    osutils,
20
20
    )
21
21
from bzrlib.inventory import InventoryEntry
22
 
from bzrlib.trace import mutter
 
22
from bzrlib.trace import mutter, is_quiet
23
23
from bzrlib.symbol_versioning import deprecated_function
24
24
 
25
25
 
314
314
        :param kind: A pair of file kinds, as generated by Tree._iter_changes.
315
315
            None indicates no file present.
316
316
        """
 
317
        if is_quiet():
 
318
            return
317
319
        if paths[1] == '' and versioned == 'added' and self.suppress_root_add:
318
320
            return
319
321
        if versioned == 'unversioned':