diff options
author | Jeremy Katz <katzj@redhat.com> | 2008-12-01 15:20:56 -0500 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2008-12-01 16:25:00 -0500 |
commit | 1b16420aa7199b7848c198820beef009c0838974 (patch) | |
tree | 280c57979ed39bd3dbaa73cfd18ff4f2307130c4 | |
parent | 48d582347492493c87b2b368394fd8e7342688bc (diff) | |
download | anaconda-1b16420aa7199b7848c198820beef009c0838974.tar.gz anaconda-1b16420aa7199b7848c198820beef009c0838974.tar.xz anaconda-1b16420aa7199b7848c198820beef009c0838974.zip |
Fix up syntax error
-rw-r--r-- | image.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -243,7 +243,7 @@ def presentRequiredMediaMessage(anaconda): "following %s %s discs:\n\n%s\nPlease have these ready " "before proceeding with the installation. If you need to " "abort the installation and exit please select " - "\"Reboot\".") % (product.productName, product.productVersion, reqcdstr) + "\"Reboot\".") % (product.productName, product.productVersion, reqcdstr), type="custom", custom_icon="warning", custom_buttons=[_("_Reboot"), _("_Back"), _("_Continue")]) |