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

  • Committer: Jelmer Vernooij
  • Date: 2010-05-29 23:45:35 UTC
  • mto: This revision was merged to the branch mainline in revision 691.
  • Revision ID: jelmer@samba.org-20100529234535-e0chetlwgbk1dbq4
Remove olive-specific ginfo command.

Show diffs side-by-side

added added

removed removed

Lines of Context:
372
372
        dialog.run()
373
373
 
374
374
 
375
 
class cmd_ginfo(Command):
376
 
    """ GTK+ info dialog
377
 
    
378
 
    """
379
 
    def run(self):
380
 
        from bzrlib import workingtree
381
 
        from bzrlib.plugins.gtk.olive.info import InfoDialog
382
 
        wt = workingtree.WorkingTree.open_containing('.')[0]
383
 
        info = InfoDialog(wt.branch)
384
 
        info.display()
385
 
        info.window.run()
386
 
 
387
 
 
388
375
class cmd_gmerge(Command):
389
376
    """ GTK+ merge dialog
390
377