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

  • Committer: Jelmer Vernooij
  • Date: 2017-05-30 19:16:23 UTC
  • mto: This revision was merged to the branch mainline in revision 6639.
  • Revision ID: jelmer@jelmer.uk-20170530191623-t9ls96vjy9wslpoo
Remove deprecated functionality.

Show diffs side-by-side

added added

removed removed

Lines of Context:
189
189
        raise NotImplementedError(self.apply_inventory_delta)
190
190
 
191
191
    @needs_write_lock
192
 
    def commit(self, message=None, revprops=None, *args,
193
 
               **kwargs):
 
192
    def commit(self, message=None, revprops=None, *args, **kwargs):
194
193
        # avoid circular imports
195
194
        from breezy import commit
196
195
        possible_master_transports=[]
198
197
                revprops,
199
198
                self.branch,
200
199
                kwargs.pop('authors', None),
201
 
                kwargs.pop('author', None),
202
200
                kwargs.get('local', False),
203
201
                possible_master_transports)
204
202
        # args for wt.commit start at message from the Commit.commit method,