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

  • Committer: Martin Pool
  • Date: 2010-05-27 03:07:30 UTC
  • mfrom: (688.1.5 201956-help)
  • Revision ID: mbp@canonical.com-20100527030730-os0opv1xroetccm9
Make find/goto more discoverable

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
    pass
22
22
 
23
23
import gtk
24
 
from bzrlib.plugins.gtk import window
25
 
from bzrlib.plugins.gtk.i18n import _i18n
 
24
from bzrlib.plugins.gtk import (
 
25
    _i18n,
 
26
    window,
 
27
    )
26
28
 
27
29
 
28
30
class StatusWindow(window.Window):
29
31
    """ Display Status window and perform the needed actions. """
30
 
 
31
32
    def __init__(self, wt, wtpath, revision=None):
32
33
        """ Initialize the Status window. """
33
34
        super(StatusWindow, self).__init__()