diff options
author | Matt Wilson <msw@redhat.com> | 2002-07-15 16:19:18 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2002-07-15 16:19:18 +0000 |
commit | 437418fb01faa79659d72dd92e06361d698e9444 (patch) | |
tree | 693f4e0bfbb07af602977e29ebe47c6edf676eea /text.py | |
parent | c75cb0aecf53928645f7702a0de19b5327113a48 (diff) | |
download | anaconda-437418fb01faa79659d72dd92e06361d698e9444.tar.gz anaconda-437418fb01faa79659d72dd92e06361d698e9444.tar.xz anaconda-437418fb01faa79659d72dd92e06361d698e9444.zip |
key off DEBUG
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -361,7 +361,8 @@ class InstallInterface: # 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) + if DEBUG: + self.screen.suspendCallback(debugSelf, self.screen) if flags.serial: self.screen.suspendCallback(spawnShell, self.screen) |