summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-01-25 01:00:51 +0000
committerMike Fulbright <msf@redhat.com>2001-01-25 01:00:51 +0000
commitefeb929ce3d1ab03b83a2b550e308a16e18f4565 (patch)
tree28990b9962ae47fc3a9c7d098631bf968817cd23 /text.py
parent33c6939a9b11c5dd6173113cea840d0a104de258 (diff)
downloadanaconda-efeb929ce3d1ab03b83a2b550e308a16e18f4565.tar.gz
anaconda-efeb929ce3d1ab03b83a2b550e308a16e18f4565.tar.xz
anaconda-efeb929ce3d1ab03b83a2b550e308a16e18f4565.zip
fix for when you dont have enough space in text mode install so you can go back
Diffstat (limited to 'text.py')
-rw-r--r--text.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/text.py b/text.py
index f77bde58f..e9504128a 100644
--- a/text.py
+++ b/text.py
@@ -600,7 +600,11 @@ class XconfiguratorWindow:
return INSTALL_NOOP
class BeginInstallWindow:
- def __call__ (self, screen, todo):
+ def __call__ (self, dir, screen, todo):
+
+ if dir == -1:
+ return INSTALL_NOOP
+
rc = ButtonChoiceWindow (screen, _("Installation to begin"),
_("A complete log of your installation will be in "
"/tmp/install.log after rebooting your system. You "
@@ -1197,6 +1201,8 @@ class InstallInterface:
rc = apply (step[1](), (dir,) + step[2])
elif step[1] == LBA32WarningWindow:
rc = apply (step[1](), (dir,) + step[2])
+ elif step[1] == BeginInstallWindow:
+ rc = apply (step[1](), (dir,) + step[2])
else:
rc = apply (step[1](), step[2])