summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-05-14 19:15:34 +0000
committerChris Lumens <clumens@redhat.com>2007-05-14 19:15:34 +0000
commitc184dfdb530da23d210ee13cd9aecec2a5b8f752 (patch)
tree1b543219083230546ba898b87219bc6cd1b6a9c6
parentb7ecd1e6f929f76db9687bec66d310b01427565b (diff)
downloadanaconda-c184dfdb530da23d210ee13cd9aecec2a5b8f752.tar.gz
anaconda-c184dfdb530da23d210ee13cd9aecec2a5b8f752.tar.xz
anaconda-c184dfdb530da23d210ee13cd9aecec2a5b8f752.zip
It's anaconda, not self.anaconda.
-rw-r--r--ChangeLog4
-rw-r--r--text.py10
2 files changed, 9 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 483a6a8a6..870590458 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-05-14 Chris Lumens <clumens@redhat.com>
+
+ * text.py (InstallInterface.run): It's anaconda, not self.anaconda.
+
2007-05-14 David Cantrell <dcantrell@redhat.com>
* command-stubs/pump-stub: Removed (#239427).
diff --git a/text.py b/text.py
index d374d438c..d3647a51e 100644
--- a/text.py
+++ b/text.py
@@ -507,7 +507,7 @@ class InstallInterface:
instLang = anaconda.id.instLanguage
if instLang.getFontFile(instLang.getCurrent()) == "none":
- if self.anaconda.isKickstart and not self.anaconda.id.instClass.ksdata.interactive:
+ if anaconda.isKickstart and not anaconda.id.instClass.ksdata.interactive:
log.warning("%s display is unavailable in text mode. The "
"installation will continue in English.")
else:
@@ -516,7 +516,7 @@ class InstallInterface:
"The installation will continue in "
"English." % (instLang.getCurrent(),),
buttons=[TEXT_OK_BUTTON])
-
+
self.screen.helpCallback(self.helpWindow)
if not self.isRealConsole():
@@ -533,10 +533,10 @@ class InstallInterface:
anaconda.id.fsset.registerMessageWindow(self.messageWindow)
anaconda.id.fsset.registerProgressWindow(self.progressWindow)
- anaconda.id.fsset.registerWaitWindow(self.waitWindow)
+ anaconda.id.fsset.registerWaitWindow(self.waitWindow)
+
+ parted.exception_set_handler(self.partedExceptionWindow)
- parted.exception_set_handler(self.partedExceptionWindow)
-
lastrc = INSTALL_OK
(step, instance) = anaconda.dispatch.currentStep()
while step: