/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: Canonical.com Patch Queue Manager
  • Date: 2007-08-16 00:00:43 UTC
  • mfrom: (2671.2.9 Aaron's integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070816000043-v5y51f50iolj5he7
New commit --author option (Lukas Lalinsky)

Show diffs side-by-side

added added

removed removed

Lines of Context:
201
201
            revprops = {}
202
202
        if not 'branch-nick' in revprops:
203
203
            revprops['branch-nick'] = self.branch.nick
 
204
        author = kwargs.pop('author', None)
 
205
        if author is not None:
 
206
            assert 'author' not in revprops
 
207
            revprops['author'] = author
204
208
        # args for wt.commit start at message from the Commit.commit method,
205
209
        args = (message, ) + args
206
210
        committed_id = commit.Commit().commit(working_tree=self,