/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-06-04 12:25:04 UTC
  • mfrom: (689.1.1 return-creds)
  • Revision ID: jelmer@samba.org-20100604122504-xe291u8la5uur0ij
Merge credentials fix from John.

Show diffs side-by-side

added added

removed removed

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