summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-04-29 20:07:23 +0000
committerJeremy Katz <katzj@redhat.com>2005-04-29 20:07:23 +0000
commit790fc9f8b9179958fd53170ba2491e4cde762069 (patch)
treeaa2ece17a6b61c0de71e613b98c6c8203d839523
parentcafa77c828a33128853d6fc1f709d883e607b67d (diff)
downloadanaconda-790fc9f8b9179958fd53170ba2491e4cde762069.tar.gz
anaconda-790fc9f8b9179958fd53170ba2491e4cde762069.tar.xz
anaconda-790fc9f8b9179958fd53170ba2491e4cde762069.zip
2005-04-29 Jeremy Katz <katzj@redhat.com>
* image.py (CdromInstallMethod.getRPMFilename): Beep when asking to insert the CD, not after...
-rw-r--r--ChangeLog5
-rw-r--r--image.py6
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index f7e78aa8c..ecb2b7085 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-04-29 Jeremy Katz <katzj@redhat.com>
+
+ * image.py (CdromInstallMethod.getRPMFilename): Beep when asking
+ to insert the CD, not after...
+
2005-04-28 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
diff --git a/image.py b/image.py
index fc9f45cb5..617f1704b 100644
--- a/image.py
+++ b/image.py
@@ -280,12 +280,12 @@ class CdromInstallMethod(ImageInstallMethod):
isys.ejectCdrom(self.device)
while not done:
- self.messageWindow(_("Change CDROM"),
- _("Please insert %s disc %d to continue.") % (productName,
- needed))
if self.intf is not None:
self.intf.beep()
+ self.messageWindow(_("Change CDROM"),
+ _("Please insert %s disc %d to continue.") % (productName,
+ needed))
try:
if isys.mount(self.device, "/mnt/source",
fstype = "iso9660", readOnly = 1):