/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: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2017-05-30 21:24:59 UTC
  • mfrom: (6630.1.4 deprecation)
  • Revision ID: breezy.the.bot@gmail.com-20170530212459-7n9a7isyb3nbim9y
Remove all deprecated arguments, functions and methods.

Merged from https://code.launchpad.net/~jelmer/brz/deprecation/+merge/324814

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,