diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-25 22:21:30 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-25 22:21:30 +0000 |
commit | 316f910899da648a2015de58369c5d010f00a250 (patch) | |
tree | ed4140d6f4b39403fa294e2fcc3b1207bf54953b /text.py | |
parent | 158c31c9dee68ed63a7cc509999bcd1ee463a1cf (diff) | |
download | anaconda-316f910899da648a2015de58369c5d010f00a250.tar.gz anaconda-316f910899da648a2015de58369c5d010f00a250.tar.xz anaconda-316f910899da648a2015de58369c5d010f00a250.zip |
fix for text mode NIS, remove deugger on <Ctrl+Z>, remove debugging line in installclass
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -877,8 +877,12 @@ class InstallInterface: self.welcomeText = _("Red Hat Linux (C) 1999 Red Hat, Inc.") self.screen.drawRootText (0, 0, self.welcomeText) self.screen.pushHelpLine (_(" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen")) +# uncomment this line to make the installer quit on <Ctrl+Z> +# handy for quick debugging. # self.screen.suspendCallback(killSelf, self.screen) - self.screen.suspendCallback(debugSelf, self.screen) +# uncomment this line to drop into the python debugger on <Ctrl+Z> +# --VERY handy-- +# self.screen.suspendCallback(debugSelf, self.screen) self.individual = Flag(0) self.step = 0 self.dir = 1 |