/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: 2011-03-14 20:12:19 UTC
  • Revision ID: jelmer@samba.org-20110314201219-wo692nzwywu6mevh
Fix formatting, imports.

Show diffs side-by-side

added added

removed removed

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