diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-02-21 03:13:26 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-02-21 03:13:26 +0000 |
commit | c9435b7cb3704a1cd5f9200cb5e8ac0307a304ce (patch) | |
tree | aa20fd241254e5f7d912f3c38e1bfb5c810b49be | |
parent | 44d46f319dd770a135af9aee9fc6775749f0deaa (diff) | |
download | anaconda-c9435b7cb3704a1cd5f9200cb5e8ac0307a304ce.tar.gz anaconda-c9435b7cb3704a1cd5f9200cb5e8ac0307a304ce.tar.xz anaconda-c9435b7cb3704a1cd5f9200cb5e8ac0307a304ce.zip |
type="error" is wrong (#84765)
-rw-r--r-- | packages.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages.py b/packages.py index c96497159..69ebae4e7 100644 --- a/packages.py +++ b/packages.py @@ -514,7 +514,8 @@ def doPreInstall(method, id, intf, instPath, dir): _("You are trying to install on a machine " "which isn't supported by this release of " "%s.") %(productName,), - type = "error") + type="custom", custom_icon="error", + custom_buttons=[_("_Exit")]) sys.exit(0) # shorthand |