~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commit.py

  • Committer: Martin Pool
  • Date: 2005-08-24 00:34:21 UTC
  • Revision ID: mbp@sourcefrog.net-20050824003421-33dd8e5c739cad2a
- send trace messages out through python logging module

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
        basis_inv = basis.inventory
86
86
 
87
87
        if verbose:
88
 
            note('looking for changes...')
 
88
            # note('looking for changes...')
 
89
            # print 'looking for changes...'
 
90
            # disabled; should be done at a higher level
 
91
            pass
89
92
 
90
93
        pending_merges = branch.pending_merges()
91
94
 
179
182
        branch.set_pending_merges([])
180
183
 
181
184
        if verbose:
182
 
            note("commited r%d" % branch.revno())
 
185
            # disabled; should go through logging
 
186
            # note("commited r%d" % branch.revno())
 
187
            # print ("commited r%d" % branch.revno())
 
188
            pass
183
189
    finally:
184
190
        branch.unlock()
185
191