summaryrefslogtreecommitdiffstats
path: root/image.py
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2007-08-07 15:55:43 +0000
committerPeter Jones <pjones@redhat.com>2007-08-07 15:55:43 +0000
commitd2602c53b7e769449675ca859432fcf245a6d676 (patch)
tree71b15eb62e824ac1497459443ddf5a767fb95be8 /image.py
parentee471a446479ad005a45a6ebb8b01a64d771ba8e (diff)
downloadanaconda-d2602c53b7e769449675ca859432fcf245a6d676.tar.gz
anaconda-d2602c53b7e769449675ca859432fcf245a6d676.tar.xz
anaconda-d2602c53b7e769449675ca859432fcf245a6d676.zip
- fix syntax error
Diffstat (limited to 'image.py')
-rw-r--r--image.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/image.py b/image.py
index f8a120430..789721f1b 100644
--- a/image.py
+++ b/image.py
@@ -177,13 +177,13 @@ class CdromInstallMethod(ImageInstallMethod):
if isinstance(e, IOError) and e.errno == 5:
msg = _("An error occurred transferring the install image "
"to your hard drive. This is probably due to "
- "bad media."))
+ "bad media.")
else:
msg = _("An error occurred transferring the install image "
"to your hard drive. You are probably out of disk "
- "space."))
+ "space.")
- self.messageWindow(_("Error", msg))
+ self.messageWindow(_("Error"), msg)
os.unlink(self.loopbackFile)
return 1