~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

Rename deprecated_nonce to DEPRECATED_PARAMETER

Show diffs side-by-side

added added

removed removed

Lines of Context:
365
365
        # args for wt.commit start at message from the Commit.commit method,
366
366
        # but with branch a kwarg now, passing in args as is results in the
367
367
        #message being used for the branch
368
 
        args = (deprecated_nonce, ) + args
 
368
        args = (DEPRECATED_PARAMETER, ) + args
369
369
        Commit().commit(working_tree=self, *args, **kwargs)
370
370
        self._set_inventory(self.read_working_inventory())
371
371