/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: Alexander Belchenko
  • Date: 2006-10-14 11:44:16 UTC
  • mto: (91.1.8 trunk) (66.2.10 trunk)
  • mto: This revision was merged to the branch mainline in revision 103.
  • Revision ID: bialix@ukr.net-20061014114416-ca05e2a28b8d12f5
olive is able to successfully work without installation

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
from dialog import error_dialog, info_dialog, warning_dialog
32
32
from launch import launch
33
 
from olive import OlivePreferences
 
33
from olive import OlivePreferences, DiffWindow
34
34
 
35
35
class OliveMenu:
36
36
    """ This class is responsible for building the context menus. """
210
210
    
211
211
    def diff(self, action):
212
212
        """ Right context menu -> Diff """
213
 
        from bzrlib.plugins.gtk.viz.diffwin import DiffWindow
214
 
        
215
213
        try:
216
214
            wt = WorkingTree.open_containing(self.path)[0]
217
215
        except errors.NotBranchError: