diff options
author | Erik Troan <ewt@redhat.com> | 2000-08-16 16:25:25 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-08-16 16:25:25 +0000 |
commit | 38d1d0c9d9a505929b35d6f43778e758aa8edea0 (patch) | |
tree | 0d42d3d5c9f6a07e31312b2ca97b54bd95c79a5c /text.py | |
parent | 2716d3c0647b7046c3afbd3ea64707f39b37af04 (diff) | |
download | anaconda-38d1d0c9d9a505929b35d6f43778e758aa8edea0.tar.gz anaconda-38d1d0c9d9a505929b35d6f43778e758aa8edea0.tar.xz anaconda-38d1d0c9d9a505929b35d6f43778e758aa8edea0.zip |
made ^Z kill again
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -855,10 +855,10 @@ class InstallInterface: self.drawFrame() # uncomment this line to make the installer quit on <Ctrl+Z> # handy for quick debugging. -# self.screen.suspendCallback(killSelf, self.screen) + self.screen.suspendCallback(killSelf, self.screen) # uncomment this line to drop into the python debugger on <Ctrl+Z> # --VERY handy-- - self.screen.suspendCallback(debugSelf, self.screen) + #self.screen.suspendCallback(debugSelf, self.screen) self.individual = Flag(0) self.step = 0 self.dir = 1 |