/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: Aaron Bentley
  • Date: 2007-04-02 17:18:11 UTC
  • mfrom: (2392 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2393.
  • Revision ID: abentley@panoramicfeedback.com-20070402171811-bz7y2b2h1m1k4n7x
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
        if not 'branch-nick' in revprops:
189
189
            revprops['branch-nick'] = self.branch.nick
190
190
        # args for wt.commit start at message from the Commit.commit method,
191
 
        # but with branch a kwarg now, passing in args as is results in the
192
 
        #message being used for the branch
193
 
        args = (DEPRECATED_PARAMETER, message, ) + args
 
191
        args = (message, ) + args
194
192
        committed_id = commit.Commit().commit(working_tree=self,
195
193
            revprops=revprops, *args, **kwargs)
196
194
        return committed_id