/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: 2020-02-13 23:57:28 UTC
  • mfrom: (7490 work)
  • mto: This revision was merged to the branch mainline in revision 7492.
  • Revision ID: jelmer@jelmer.uk-20200213235728-m6ds0mm3mbs4y182
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
See MutableTree for more details.
20
20
"""
21
21
 
 
22
from __future__ import absolute_import
 
23
 
22
24
from . import (
23
25
    errors,
24
26
    hooks,
401
403
        """
402
404
        raise NotImplementedError(self.copy_one)
403
405
 
404
 
    def transform(self, pb=None):
 
406
    def get_transform(self, pb=None):
405
407
        """Return a transform object for use with this tree."""
406
 
        raise NotImplementedError(self.transform)
 
408
        raise NotImplementedError(self.get_transform)
407
409
 
408
410
 
409
411
class MutableTreeHooks(hooks.Hooks):