summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-01-12 11:54:49 -0500
committerChris Lumens <clumens@redhat.com>2008-01-12 11:54:49 -0500
commitf087ddf761e71471e4d521ddcb34d1aa783a9c79 (patch)
treee9574bb8b037fd7dc648024658ce833ed2eed11e /text.py
parent1f5ac2a6a92c1dcc2842c25afe218f76d2d74df2 (diff)
downloadanaconda-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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/text.py b/text.py
index fc9d7bfa1..c9821997b 100644
--- a/text.py
+++ b/text.py
@@ -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])