/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 olive/__init__.py

  • Committer: Aaron Bentley
  • Date: 2006-12-20 02:06:04 UTC
  • mto: This revision was merged to the branch mainline in revision 125.
  • Revision ID: aaron.bentley@utoronto.ca-20061220020604-bzw7upe3u569o6h8
Update olive to use current bzr.dev API.  Used _repo_relpath.  Bad phanatic!

Show diffs side-by-side

added added

removed removed

Lines of Context:
348
348
        
349
349
        branch = self.wt.branch
350
350
        file_id = self.wt.path2id(self.wt.relpath(os.path.join(self.path, self.get_selected_right())))
351
 
        revision_id = None
352
351
        
353
352
        window = GAnnotateWindow(all=False, plain=False)
354
353
        window.set_title(os.path.join(self.path, self.get_selected_right()) + " - Annotate")
356
355
        window.show()
357
356
        branch.lock_read()
358
357
        try:
359
 
            window.annotate(branch, file_id, revision_id)
 
358
            window.annotate(self.wt, branch, file_id)
360
359
        finally:
361
360
            branch.unlock()
362
361