diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-06-20 03:10:16 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-06-20 03:10:16 +0000 |
commit | faadaa7b59c8959b56768130fbd624dcc3f71df6 (patch) | |
tree | a4bb1ea51b2eadc91eca380db448726ea471d8eb /image.py | |
parent | 15146115d5c6e159f69c53d8336abc08f96dcb33 (diff) | |
download | anaconda-faadaa7b59c8959b56768130fbd624dcc3f71df6.tar.gz anaconda-faadaa7b59c8959b56768130fbd624dcc3f71df6.tar.xz anaconda-faadaa7b59c8959b56768130fbd624dcc3f71df6.zip |
use product name (#67058)
Diffstat (limited to 'image.py')
-rw-r--r-- | image.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -19,6 +19,7 @@ import isys import time import kudzu import string +from constants import * from rhpl.log import log from rhpl.translate import _ @@ -153,7 +154,8 @@ class CdromInstallMethod(ImageInstallMethod): if not done: self.messageWindow(_("Wrong CDROM"), - _("That's not the correct Red Hat CDROM.")) + _("That's not the correct %s CDROM.") + % (productName,)) isys.umount("/mnt/source") isys.ejectCdrom(self.device) except: |