diff options
author | Mike Fulbright <msf@redhat.com> | 2001-01-25 01:00:51 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-01-25 01:00:51 +0000 |
commit | efeb929ce3d1ab03b83a2b550e308a16e18f4565 (patch) | |
tree | 28990b9962ae47fc3a9c7d098631bf968817cd23 /text.py | |
parent | 33c6939a9b11c5dd6173113cea840d0a104de258 (diff) | |
download | anaconda-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.py | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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]) |