diff options
author | Chris Lumens <clumens@redhat.com> | 2006-01-05 18:34:20 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-01-05 18:34:20 +0000 |
commit | 7969309620c7687fc53972de4e400dc425bdb9b7 (patch) | |
tree | 7f533171bd1f050f797f0579156b0617bc61d1fa | |
parent | 34c97d5ced48f8f8f495f8a649646bd806e01b5c (diff) | |
download | anaconda-7969309620c7687fc53972de4e400dc425bdb9b7.tar.gz anaconda-7969309620c7687fc53972de4e400dc425bdb9b7.tar.xz anaconda-7969309620c7687fc53972de4e400dc425bdb9b7.zip |
Fix message wording (#155884).
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | yuminstall.py | 3 |
2 files changed, 5 insertions, 1 deletions
@@ -5,6 +5,9 @@ * text.py (ProgressWindow.__init__): Set a default on updpct. + * yuminstall.py (simpleCallback.callback): Fix message wording + (#155884). + 2006-01-04 David Cantrell <dcantrell@redhat.com> * iw/GroupSelector.py (GroupSelector.populateCategories): Display diff --git a/yuminstall.py b/yuminstall.py index 5cc19dcd5..1cec5d404 100644 --- a/yuminstall.py +++ b/yuminstall.py @@ -136,7 +136,8 @@ class simpleCallback: "If you are installing from CD media this usually " "means the CD media is corrupt, or the CD drive is " "unable to read the media.\n\n" - "Press <return> to try again.") % (po.returnSimple('name'), + "Press 'Retry' to try again.") % + (po.returnSimple('name'), po.returnSimple('version'), po.returnSimple('release'), po.returnSimple('arch')), |