/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/inventory.py

  • Committer: Aaron Bentley
  • Date: 2007-11-22 15:15:02 UTC
  • mto: This revision was merged to the branch mainline in revision 3036.
  • Revision ID: abentley@panoramicfeedback.com-20071122151502-m9kwy2ums0gddyev
Refactor differ to support registering differ factories

Show diffs side-by-side

added added

removed removed

Lines of Context:
629
629
            to_file_id, from_file_id = from_file_id, to_file_id
630
630
            tree, to_tree = to_tree, tree
631
631
            from_label, to_label = to_label, from_label
632
 
        differ = TextDiffer(tree, to_tree, '', '', 'utf-8', output_to,
 
632
        differ = TextDiffer(tree, to_tree, output_to, 'utf-8', '', '',
633
633
                            text_diff)
634
634
        return differ.diff_text(from_file_id, to_file_id, from_label, to_label)
635
635