summaryrefslogtreecommitdiffstats
path: root/fstab.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2000-12-07 23:09:36 +0000
committerMike Fulbright <msf@redhat.com>2000-12-07 23:09:36 +0000
commit7092f4bf5bd788799fd97cd7e1f9b8b2a4c2be95 (patch)
treedc2a1938615f8d4a0b0076b40332ef8ae89cae66 /fstab.py
parente8500da6c0af19e7ec1d3c8607fd8fb1bb830709 (diff)
downloadanaconda-7092f4bf5bd788799fd97cd7e1f9b8b2a4c2be95.tar.gz
anaconda-7092f4bf5bd788799fd97cd7e1f9b8b2a4c2be95.tar.xz
anaconda-7092f4bf5bd788799fd97cd7e1f9b8b2a4c2be95.zip
fix for bug #16686/21822
Diffstat (limited to 'fstab.py')
-rw-r--r--fstab.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fstab.py b/fstab.py
index 56b37710e..15224c43c 100644
--- a/fstab.py
+++ b/fstab.py
@@ -712,7 +712,7 @@ class Fstab:
isys.mount(device, instPath + mntpoint, fstype = fsystem)
except SystemError, (errno, msg):
self.messageWindow(_("Error"),
- _("Error mounting %s: %s") % (device, msg))
+ _("Error mounting %s: %s\n\nThis may mean this partition has not been formatted.") % (device, msg))
raise SystemError, (errno, msg)
try: