/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

Rename MutableTree.get_transform to MutableTree.transform, add Tree.preview_transform.

Merged from https://code.launchpad.net/~jelmer/brz/transform/+merge/386851

Show diffs side-by-side

added added

removed removed

Lines of Context:
406
406
        """
407
407
        raise NotImplementedError(self.copy_one)
408
408
 
409
 
    def get_transform(self, pb=None):
 
409
    def transform(self, pb=None):
410
410
        """Return a transform object for use with this tree."""
411
 
        raise NotImplementedError(self.get_transform)
 
411
        raise NotImplementedError(self.transform)
412
412
 
413
413
 
414
414
class MutableTreeHooks(hooks.Hooks):