~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Jelmer Vernooij
  • Date: 2011-05-03 13:53:46 UTC
  • mto: This revision was merged to the branch mainline in revision 5826.
  • Revision ID: jelmer@samba.org-20110503135346-l2f6xnenzn3320gv
Kill annotate_file_revision_tree() in favor annotate_file_tree().

Show diffs side-by-side

added added

removed removed

Lines of Context:
4694
4694
    def run(self, filename, all=False, long=False, revision=None,
4695
4695
            show_ids=False, directory=None):
4696
4696
        from bzrlib.annotate import (
4697
 
            annotate_file_revision_tree,
4698
4697
            annotate_file_tree,
4699
4698
            )
4700
4699
        wt, branch, relpath = \
4717
4716
            annotate_file_tree(wt, file_id, self.outf, long, all,
4718
4717
                show_ids=show_ids)
4719
4718
        else:
4720
 
            annotate_file_revision_tree(tree, file_id, self.outf, long, all,
 
4719
            annotate_file_tree(tree, file_id, self.outf, long, all,
4721
4720
                show_ids=show_ids, branch=branch)
4722
4721
 
4723
4722