summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-08 23:45:05 +0000
committerMatt Wilson <msw@redhat.com>1999-09-08 23:45:05 +0000
commitd8c74d8ba90b7791526d301eccc8fa458f4aeb91 (patch)
treee8cc787ed661330957d533583b72467ae44c5efa /text.py
parent1a0bb4c88f9ff0419c579a8f15f53479160da7bd (diff)
downloadanaconda-d8c74d8ba90b7791526d301eccc8fa458f4aeb91.tar.gz
anaconda-d8c74d8ba90b7791526d301eccc8fa458f4aeb91.tar.xz
anaconda-d8c74d8ba90b7791526d301eccc8fa458f4aeb91.zip
suspend/resume around debug
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 43d0378f8..69f280a90 100644
--- a/text.py
+++ b/text.py
@@ -1067,7 +1067,6 @@ class LiloWindow:
locations.append (format % (boothd, "Master Boot Record (MBR)"))
locations.append (format % (bootpart, "First sector of boot partition"))
- # XXX fixme restore state
(rc, sel) = ListboxChoiceWindow (screen, _("LILO Configuration"),
_("Where do you want to install the bootloader?"),
locations, default = default,
@@ -1699,6 +1698,7 @@ def killSelf(screen):
os._exit(0)
def debugSelf(screen):
- screen.finish ()
+ screen.suspend ()
import pdb
pdb.set_trace()
+ screen.resume ()