diff options
author | Chris Lumens <clumens@redhat.com> | 2008-01-12 11:54:49 -0500 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2008-01-12 11:54:49 -0500 |
commit | f087ddf761e71471e4d521ddcb34d1aa783a9c79 (patch) | |
tree | e9574bb8b037fd7dc648024658ce833ed2eed11e /text.py | |
parent | 1f5ac2a6a92c1dcc2842c25afe218f76d2d74df2 (diff) | |
download | anaconda-f087ddf761e71471e4d521ddcb34d1aa783a9c79.tar.gz anaconda-f087ddf761e71471e4d521ddcb34d1aa783a9c79.tar.xz anaconda-f087ddf761e71471e4d521ddcb34d1aa783a9c79.zip |
Fix a bunch of pychecker errors.
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -399,8 +399,8 @@ class InstallInterface: def detailedMessageWindow(self, title, text, longText=None, type="ok", default=None, custom_icon=None, custom_buttons=[]): - return messageWindow(title, text, type, default, custom_icon, - custom_buttons) + return self.messageWindow(title, text, type, default, custom_icon, + custom_buttons) def entryWindow(self, title, text, prompt, entrylength = None): (res, value) = EntryWindow(self.screen, title, text, [prompt]) |