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

  • Committer: Jelmer Vernooij
  • Date: 2007-01-29 23:44:51 UTC
  • mfrom: (126.1.5 bzr-gtk)
  • Revision ID: jelmer@samba.org-20070129234451-oxgno2nf3qkowb1x
Merge Szilvester

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
from bzrlib.workingtree import WorkingTree
24
24
from bzrlib.bzrdir import BzrDir
25
25
 
 
26
import os.path
 
27
 
26
28
__version__ = '0.13.0'
27
29
 
28
30
 
58
60
        from bzrlib.plugins.gtk.olive.branch import BranchDialog
59
61
 
60
62
        set_ui_factory()
61
 
        window = BranchDialog('.')
62
 
        window.display()
 
63
        dialog = BranchDialog(os.path.abspath('.'))
 
64
        dialog.window.connect("destroy", lambda w: gtk.main_quit())
 
65
        dialog.display()
 
66
        
 
67
        gtk.main()
63
68
 
64
69
register_command(cmd_gbranch)
65
70