~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/diff.py

Lalos fix to diff -r x..y ../path/to/branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
169
169
    if revision2 is None:
170
170
        new_tree = b.working_tree()
171
171
    else:
172
 
        new_tree = b.revision_tree(revision2.in_branch(b).rev_id)
 
172
        new_tree = b.revision_tree(revision2.in_history(b).rev_id)
173
173
 
174
174
    show_diff_trees(old_tree, new_tree, output, specific_files,
175
175
                    external_diff_options)