/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: Jelmer Vernooij
  • Date: 2006-06-08 11:38:41 UTC
  • mto: This revision was merged to the branch mainline in revision 1753.
  • Revision ID: jelmer@samba.org-20060608113841-ca51ebd824e5ab78
Make the commit message the first argument of CommitBuilder.commit().

Show diffs side-by-side

added added

removed removed

Lines of Context:
306
306
                raise PointlessCommit()
307
307
 
308
308
            self._emit_progress_update()
 
309
            # TODO: Now the new inventory is known, check for conflicts and prompt the 
 
310
            # user for a commit message.
309
311
            self.builder.finish_inventory()
310
312
            self._emit_progress_update()
311
 
            self.builder.set_message(self.message)
312
 
            self.rev_id = self.builder.commit()
 
313
            self.rev_id = self.builder.commit(self.message)
313
314
            # revision data is in the local branch now.
314
315
            
315
316
            # upload revision data to the master.
515
516
            self._emit_progress_update()
516
517
            self._emit_progress_update()
517
518
            file_id = new_ie.file_id
518
 
            mutter('check %s {%s}', path, new_ie.file_id)
 
519
            mutter('check %s {%s}', path, file_id)
519
520
            if (not self.specific_files or 
520
521
                is_inside_or_parent_of_any(self.specific_files, path)):
521
522
                    mutter('%s selected for commit', path)