diff options
author | Chris Lumens <clumens@redhat.com> | 2009-09-15 13:47:16 -0400 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2009-09-22 16:37:07 -0400 |
commit | 6675704a3afbc6cdea455e0a6bcbc9dd6ebd8096 (patch) | |
tree | 6cbcb918fce43769c6b635bf2af98446845a55fc /gui.py | |
parent | 45bb27f111d21efb547e42486961b1de4fb98541 (diff) | |
download | anaconda-6675704a3afbc6cdea455e0a6bcbc9dd6ebd8096.tar.gz anaconda-6675704a3afbc6cdea455e0a6bcbc9dd6ebd8096.tar.xz anaconda-6675704a3afbc6cdea455e0a6bcbc9dd6ebd8096.zip |
Remove the installation number screen.
Whatever form the new entitlement system takes, it is unlikely it will
look like what we've currently got. It's probably better to start over
fresh than attempt to adapt what we've got into supporting the new system.
This will also allow testing of the RHEL6 tree with the right product
name without requiring testers to enter a key.
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -1097,16 +1097,6 @@ class InstallInterface: custom_buttons=[_("_Exit installer")]).getrc() return rc - def getInstallKey(self, key = ""): - d = InstallKeyWindow(self.anaconda, key) - rc = d.run() - if rc in [gtk.RESPONSE_CANCEL, gtk.RESPONSE_DELETE_EVENT]: - ret = None - else: - ret = d.get_key() - d.destroy() - return ret - def getLuksPassphrase(self, passphrase = "", preexist = False): if self.icw: parent = self.icw.window |