/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/mutabletree.py

  • Committer: Robert Collins
  • Date: 2007-03-27 21:45:59 UTC
  • mfrom: (2379 +trunk)
  • mto: (2018.5.109 hpss)
  • mto: This revision was merged to the branch mainline in revision 2435.
  • Revision ID: robertc@robertcollins.net-20070327214559-3zto1rfp3g7dnzl9
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
153
153
        if not 'branch-nick' in revprops:
154
154
            revprops['branch-nick'] = self.branch.nick
155
155
        # args for wt.commit start at message from the Commit.commit method,
156
 
        # but with branch a kwarg now, passing in args as is results in the
157
 
        #message being used for the branch
158
 
        args = (DEPRECATED_PARAMETER, message, ) + args
 
156
        args = (message, ) + args
159
157
        committed_id = commit.Commit().commit(working_tree=self,
160
158
            revprops=revprops, *args, **kwargs)
161
159
        return committed_id