summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-08-02 15:49:42 +0000
committerChris Lumens <clumens@redhat.com>2007-08-02 15:49:42 +0000
commitbaf8838ad67d3aeb1bb301cac158270a785201a2 (patch)
treef36b7b0357583ad36914334879b6dc4a2ec272bb /text.py
parentc135fa72a5e8410be5f2bb3f1427d98ba7d7720b (diff)
downloadanaconda-baf8838ad67d3aeb1bb301cac158270a785201a2.tar.gz
anaconda-baf8838ad67d3aeb1bb301cac158270a785201a2.tar.xz
anaconda-baf8838ad67d3aeb1bb301cac158270a785201a2.zip
Remove the debug button on livecd installs.
Diffstat (limited to 'text.py')
-rw-r--r--text.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/text.py b/text.py
index d3647a51e..fee675bc8 100644
--- a/text.py
+++ b/text.py
@@ -155,7 +155,8 @@ class ExceptionWindow:
if hasActiveNetDev() or flags.debug:
self.buttons.append(_("Remote"))
- self.buttons.append(_("Debug"))
+ if not flags.livecdInstall:
+ self.buttons.append(_("Debug"))
def run(self):
log.info ("in run, screen = %s" % self.screen)