diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-09-02 13:01:17 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-09-02 13:01:17 +0200 |
commit | afa1de13f0576ace6dcbb0176490fd20922950cd (patch) | |
tree | 056a5fd646f53dfa83f2fe231ec0943747b15ffc /portato/gui/windows/about.py | |
parent | 02d96210d9102f0cdec95b4e0f595cbd8fdd1e10 (diff) | |
download | portato-afa1de13f0576ace6dcbb0176490fd20922950cd.tar.gz portato-afa1de13f0576ace6dcbb0176490fd20922950cd.tar.bz2 portato-afa1de13f0576ace6dcbb0176490fd20922950cd.zip |
Switch from tabs to 4 spaces
Diffstat (limited to '')
-rw-r--r-- | portato/gui/windows/about.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/portato/gui/windows/about.py b/portato/gui/windows/about.py index df724f3..21608c0 100644 --- a/portato/gui/windows/about.py +++ b/portato/gui/windows/about.py @@ -18,17 +18,17 @@ from .basic import AbstractDialog from ...constants import VERSION, APP_ICON class AboutWindow (AbstractDialog): - """A window showing the "about"-informations.""" + """A window showing the "about"-informations.""" - def __init__ (self, parent): + def __init__ (self, parent): - AbstractDialog.__init__(self, parent) + AbstractDialog.__init__(self, parent) - img = gtk.Image() - img.set_from_file(APP_ICON) + img = gtk.Image() + img.set_from_file(APP_ICON) - self.window.set_version(VERSION) - self.window.set_logo(img.get_pixbuf()) + self.window.set_version(VERSION) + self.window.set_logo(img.get_pixbuf()) - self.window.show_all() + self.window.show_all() |