/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/commit.py

  • Committer: Aaron Bentley
  • Date: 2008-12-03 04:23:21 UTC
  • mfrom: (3878 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3892.
  • Revision ID: aaron@aaronbentley.com-20081203042321-kr5k4mdhmdvl3553
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
    debug,
61
61
    errors,
62
62
    revision,
 
63
    trace,
63
64
    tree,
64
65
    )
65
66
from bzrlib.branch import Branch
384
385
                # Add revision data to the local branch
385
386
                self.rev_id = self.builder.commit(self.message)
386
387
 
387
 
            except:
 
388
            except Exception, e:
 
389
                mutter("aborting commit write group because of exception:")
 
390
                trace.log_exception_quietly()
 
391
                note("aborting commit write group: %r" % (e,))
388
392
                self.builder.abort()
389
393
                raise
390
394