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

  • Committer: Jelmer Vernooij
  • Date: 2008-06-27 16:55:09 UTC
  • mto: This revision was merged to the branch mainline in revision 506.
  • Revision ID: jelmer@samba.org-20080627165509-7b68w2chzvvgc8vz
Use helper script to open patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
import os
26
26
 
27
 
from bzrlib import (
28
 
    bzrdir,
29
 
    errors,
30
 
    transport,
31
 
    )
32
 
 
33
 
from bzrlib.plugins.gtk.dialog import error_dialog
34
 
from bzrlib.plugins.gtk.errors import show_bzr_error
35
 
from bzrlib.plugins.gtk.i18n import _i18n
36
 
 
 
27
from dialog import error_dialog
 
28
from errors import show_bzr_error
 
29
 
 
30
from bzrlib import bzrdir
 
31
from bzrlib import transport
 
32
import bzrlib.errors as errors
 
33
from bzrlib.plugins.gtk import _i18n
37
34
 
38
35
class InitDialog(gtk.Dialog):
39
36
    """ Initialize dialog. """
40
 
 
41
37
    def __init__(self, path, parent=None):
42
38
        """ Initialize the Initialize dialog. """
43
39
        gtk.Dialog.__init__(self, title="Initialize - Olive",