/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 bzrlib/missing.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-07-24 03:42:48 UTC
  • mfrom: (1880.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060724034248-d4d33393b6327d71
(robertc) Deprecated EmptyTree in favour of Repository.revision_tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
def iter_log_data(revisions, revision_source, verbose):
7
7
    from bzrlib.diff import compare_trees
8
 
    from bzrlib.tree import EmptyTree
9
 
    last_tree = EmptyTree
 
8
    last_tree = revision_source.revision_tree(None)
10
9
    last_rev_id = None
11
10
    for revno, rev_id in revisions:
12
11
        rev = revision_source.get_revision(rev_id)