/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: Mikkel Kamstrup Erlandsen
  • Date: 2011-09-28 07:45:39 UTC
  • mto: This revision was merged to the branch mainline in revision 740.
  • Revision ID: mikkel.kamstrup@gmail.com-20110928074539-qxl1yn1bkjel6ir0
Add X-GNOME-Autostart-Delay=30 to bzr-notify.desktop

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
29
 
 
30
 
from bzrlib import bzrdir
31
 
from bzrlib import transport
32
 
import bzrlib.errors as errors
33
 
from bzrlib.plugins.gtk import _i18n
 
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
 
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",