~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: 2006-07-29 14:45:56 UTC
  • mfrom: (1711.2.102 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060729144556-473b3c46dfa061a7
(jam) clean up some unnecessary mutter() calls

Show diffs side-by-side

added added

removed removed

Lines of Context:
509
509
        for path, new_ie in entries:
510
510
            self._emit_progress_update()
511
511
            file_id = new_ie.file_id
512
 
            mutter('check %s {%s}', path, file_id)
 
512
            # mutter('check %s {%s}', path, file_id)
513
513
            if (not self.specific_files or 
514
514
                is_inside_or_parent_of_any(self.specific_files, path)):
515
 
                    mutter('%s selected for commit', path)
 
515
                    # mutter('%s selected for commit', path)
516
516
                    ie = new_ie.copy()
517
517
                    ie.revision = None
518
518
            else:
519
 
                mutter('%s not selected for commit', path)
 
519
                # mutter('%s not selected for commit', path)
520
520
                if self.basis_inv.has_id(file_id):
521
521
                    ie = self.basis_inv[file_id].copy()
522
522
                else: