diff options
author | Mike Fulbright <msf@redhat.com> | 2002-12-17 18:06:42 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-12-17 18:06:42 +0000 |
commit | 1cd97b5c52719f99599fc4ab1a629f3e675120e2 (patch) | |
tree | 8372ad37b8c04f2f7758ee79402dbbd7bcb7c825 | |
parent | b6d0c1c92e67d14e01293ba2d464b2f622ee323b (diff) | |
download | anaconda-1cd97b5c52719f99599fc4ab1a629f3e675120e2.tar.gz anaconda-1cd97b5c52719f99599fc4ab1a629f3e675120e2.tar.xz anaconda-1cd97b5c52719f99599fc4ab1a629f3e675120e2.zip |
fix message some
-rw-r--r-- | partedUtils.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/partedUtils.py b/partedUtils.py index 6d09c24a4..391106b03 100644 --- a/partedUtils.py +++ b/partedUtils.py @@ -672,7 +672,11 @@ class DiskSet: _("The partition table on device %s was unreadable. " "To create new partitions it must be initialized, " "causing the loss of ALL DATA on this drive.\n\n" - "Would you like to initialize this drive?") + "This operation will override any previous " + "installation choices about which drives to " + "ignore.\n\n" + "Would you like to initialize this drive, " + "erasing ALL DATA?") % (drive,), type = "yesno") if rc == 0: DiskSet.skippedDisks.append(drive) |