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

  • Committer: Jelmer Vernooij
  • Date: 2006-09-27 17:25:14 UTC
  • mto: (0.12.2 olive)
  • mto: This revision was merged to the branch mainline in revision 83.
  • Revision ID: jelmer@samba.org-20060927172514-9d1dfd3902d9a255
Remove communicator use from Commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
204
204
    def commit(self, action):
205
205
        """ Right context menu -> Commit """
206
206
        from commit import OliveCommit
207
 
        commit = OliveCommit(self.gladefile, self.comm, self.dialog)
 
207
        wt, path = WorkingTree.open_containing(self.comm.get_path())
 
208
        commit = OliveCommit(self.gladefile, wt, path, self.dialog)
208
209
        commit.display()
209
210
    
210
211
    def diff(self, action):