/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to annotate/gannotate.py

  • Committer: Aaron Bentley
  • Date: 2006-06-19 23:12:15 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20060619231215-cda3d3c9b26b70ed
Fix annotate diff window title

Show diffs side-by-side

added added

removed removed

Lines of Context:
214
214
            tree2 = repository.revision_tree(NULL_REVISION)
215
215
        from bzrlib.plugins.gtk.viz.diffwin import DiffWindow
216
216
        window = DiffWindow()
217
 
        window.set_diff("Diff for row %d" % row, tree1, tree2)
 
217
        window.set_diff("Diff for row %d" % (row+1), tree1, tree2)
218
218
        window.set_file(tree1.id2path(self.file_id))
219
219
        window.show()
220
220