summaryrefslogtreecommitdiffstats
path: root/image.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-06-20 03:10:16 +0000
committerJeremy Katz <katzj@redhat.com>2002-06-20 03:10:16 +0000
commitfaadaa7b59c8959b56768130fbd624dcc3f71df6 (patch)
treea4bb1ea51b2eadc91eca380db448726ea471d8eb /image.py
parent15146115d5c6e159f69c53d8336abc08f96dcb33 (diff)
downloadanaconda-faadaa7b59c8959b56768130fbd624dcc3f71df6.tar.gz
anaconda-faadaa7b59c8959b56768130fbd624dcc3f71df6.tar.xz
anaconda-faadaa7b59c8959b56768130fbd624dcc3f71df6.zip
use product name (#67058)
Diffstat (limited to 'image.py')
-rw-r--r--image.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/image.py b/image.py
index 4f2dfbf99..994f61379 100644
--- a/image.py
+++ b/image.py
@@ -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: