~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Robert Collins
  • Date: 2005-11-07 20:29:51 UTC
  • mfrom: (1457.1.17)
  • Revision ID: robertc@robertcollins.net-20051107202951-6ae936c7a3e57f6f
Branch.commit() has moved to WorkingTree.commit(). (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1213
1213
                raise BzrCommandError("empty commit message specified")
1214
1214
            
1215
1215
        try:
1216
 
            b.commit(message, specific_files=selected_list,
 
1216
            b.working_tree().commit(message, specific_files=selected_list,
1217
1217
                     allow_pointless=unchanged, strict=strict)
1218
1218
        except PointlessCommit:
1219
1219
            # FIXME: This should really happen before the file is read in;