summaryrefslogtreecommitdiffstats
path: root/fstab.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2000-12-12 20:44:20 +0000
committerMike Fulbright <msf@redhat.com>2000-12-12 20:44:20 +0000
commitbaa179c6e1a699a76d4a06ce3e607c99890b1248 (patch)
tree51571047909105dbb2f52321508c2d759ef0a24e /fstab.py
parenta7dccca0a100a024334c43cd59cb467e46507c63 (diff)
downloadanaconda-baa179c6e1a699a76d4a06ce3e607c99890b1248.tar.gz
anaconda-baa179c6e1a699a76d4a06ce3e607c99890b1248.tar.xz
anaconda-baa179c6e1a699a76d4a06ce3e607c99890b1248.zip
fix message for when trying to mount unformatted filesystems
Diffstat (limited to 'fstab.py')
-rw-r--r--fstab.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/fstab.py b/fstab.py
index 47fb15ecc..f38bfe00d 100644
--- a/fstab.py
+++ b/fstab.py
@@ -712,7 +712,10 @@ class Fstab:
isys.mount(device, instPath + mntpoint, fstype = fsystem)
except SystemError, (errno, msg):
self.messageWindow(_("Error"),
- _("Error mounting %s: %s\n\nThis may mean this partition has not been formatted.") % (device, msg))
+ _("Error mounting device %s as %s: %s\n\n"
+ "This most likely means this partition has "
+ "not been formatted.\n\nPress OK to reboot your "
+ "system.") % (device, mntpoint, msg))
raise SystemError, (errno, msg)
try: