summaryrefslogtreecommitdiffstats
path: root/textw/welcome_text.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-02-08 04:21:12 +0000
committerMike Fulbright <msf@redhat.com>2002-02-08 04:21:12 +0000
commita5649c996f254ae1e3b2db0586cda8255bc65d77 (patch)
tree5bb5f7974c6cc050a3bd7751623d8d93270ec3ae /textw/welcome_text.py
parentff5728fd1358ded66221f13959c5286d879261b6 (diff)
downloadanaconda-a5649c996f254ae1e3b2db0586cda8255bc65d77.tar.gz
anaconda-a5649c996f254ae1e3b2db0586cda8255bc65d77.tar.xz
anaconda-a5649c996f254ae1e3b2db0586cda8255bc65d77.zip
oh yeah goodbye reconfig
Diffstat (limited to 'textw/welcome_text.py')
-rw-r--r--textw/welcome_text.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/textw/welcome_text.py b/textw/welcome_text.py
index 34a1a547b..974c74cef 100644
--- a/textw/welcome_text.py
+++ b/textw/welcome_text.py
@@ -35,22 +35,3 @@ class WelcomeWindow:
return INSTALL_OK
-class ReconfigWelcomeWindow:
- def __call__(self, screen):
- rc = ButtonChoiceWindow(screen, _("Red Hat Linux"),
- _("Welcome to the Red Hat Linux!\n\n"
- "You have entered reconfiguration mode, "
- "which will allow you to configure "
- "site-specific options of your computer."
- "\n\n"
- "To exit without changing your setup "
- "select the ""Cancel"" button below."),
- buttons = [TEXT_OK_BUTTON, _("Cancel")], width = 50,
- help = "reconfigwelcome")
-
- if rc == string.lower(_("Cancel")):
- screen.finish()
- os._exit(0)
-
- return INSTALL_OK
-