summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-06-22 23:56:28 +0000
committerMatt Wilson <msw@redhat.com>2001-06-22 23:56:28 +0000
commit0c9e60e741e93b599af8a7c976112dc587ad23de (patch)
tree201a62193d1e3c9cb0d9242cc20a8fcd3ee0fdf0 /text.py
parent34f2f5fd284cf8e70680934bc07d7539600ed312 (diff)
downloadanaconda-0c9e60e741e93b599af8a7c976112dc587ad23de.tar.gz
anaconda-0c9e60e741e93b599af8a7c976112dc587ad23de.tar.xz
anaconda-0c9e60e741e93b599af8a7c976112dc587ad23de.zip
various pychecker fixups
Diffstat (limited to 'text.py')
-rw-r--r--text.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/text.py b/text.py
index 1945d334f..b14bd057e 100644
--- a/text.py
+++ b/text.py
@@ -267,10 +267,6 @@ class InstallInterface:
def waitWindow(self, title, text):
return WaitWindow(self.screen, title, text)
- def packageProgressWindow(self, total, totalSize):
- self.screen.pushHelpLine (_(" "))
- return InstallProgressWindow(self.screen, total, totalSize)
-
def drawFrame(self):
self.welcomeText = _("Red Hat Linux (C) 2001 Red Hat, Inc.")
self.screen.drawRootText (0, 0, self.welcomeText)
@@ -331,6 +327,7 @@ class InstallInterface:
step = len(classNames) - 1
while step >= 0 and step < len(classNames):
+ nextWindow = None
s = "from %s import %s; nextWindow = %s" % \
(file, classNames[step], classNames[step])
exec s