~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Aaron Bentley
  • Date: 2006-06-15 03:10:51 UTC
  • mto: This revision was merged to the branch mainline in revision 1771.
  • Revision ID: aaron.bentley@utoronto.ca-20060615031051-94c53f386edc1f8c
Ignore lines that start with '#' in patch parser

Show diffs side-by-side

added added

removed removed

Lines of Context:
509
509
        # but with branch a kwarg now, passing in args as is results in the
510
510
        #message being used for the branch
511
511
        args = (DEPRECATED_PARAMETER, message, ) + args
512
 
        committed_id = Commit().commit( working_tree=self, revprops=revprops,
513
 
            *args, **kwargs)
 
512
        Commit().commit(working_tree=self, revprops=revprops, *args, **kwargs)
514
513
        self._set_inventory(self.read_working_inventory())
515
 
        return committed_id
516
514
 
517
515
    def id2abspath(self, file_id):
518
516
        return self.abspath(self.id2path(file_id))