diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-14 00:54:35 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-14 00:54:35 +0000 |
commit | 565d5ab529d2dd8bfa78f6cd1febefa6ba703c92 (patch) | |
tree | d8ab46a3e45aae77f29384b84e885aa799adac57 /iw/installpath.py | |
parent | 12e7f60d6a97b6c4eb59dda70c0371f144491c97 (diff) | |
download | anaconda-565d5ab529d2dd8bfa78f6cd1febefa6ba703c92.tar.gz anaconda-565d5ab529d2dd8bfa78f6cd1febefa6ba703c92.tar.xz anaconda-565d5ab529d2dd8bfa78f6cd1febefa6ba703c92.zip |
lilo fixes, don't allow adding duplicate users
Diffstat (limited to 'iw/installpath.py')
-rw-r--r-- | iw/installpath.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/iw/installpath.py b/iw/installpath.py index 96989b49c..91571baa5 100644 --- a/iw/installpath.py +++ b/iw/installpath.py @@ -32,8 +32,10 @@ SERVER = 5 class InstallPathWindow (InstallWindow): - installTypes = ((WORKSTATION_GNOME, _("GNOME Workstation"), "gnome.png"), - (WORKSTATION_KDE, _("KDE Workstation"), "kde.png"), + installTypes = ((WORKSTATION_GNOME, _("GNOME Workstation"), + "gnome-workstation.png"), + (WORKSTATION_KDE, _("KDE Workstation"), + "kde-workstation.png"), (SERVER, _("Server"), "server.png"), (CUSTOM, _("Custom"), "custom.png")) |