summaryrefslogtreecommitdiffstats
path: root/partIntfHelpers.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-02-28 22:33:32 +0000
committerJeremy Katz <katzj@redhat.com>2003-02-28 22:33:32 +0000
commit419f0db972250eb390f39afd9fc7f2549c083478 (patch)
tree1c63863ca21225a88a298a80defff324018ae95c /partIntfHelpers.py
parentc4cd4294e325c619a9ba8905a5de0b73fc58f28d (diff)
downloadanaconda-419f0db972250eb390f39afd9fc7f2549c083478.tar.gz
anaconda-419f0db972250eb390f39afd9fc7f2549c083478.tar.xz
anaconda-419f0db972250eb390f39afd9fc7f2549c083478.zip
oops, have to group the multiline stringsworkflow-change-base
Diffstat (limited to 'partIntfHelpers.py')
-rw-r--r--partIntfHelpers.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/partIntfHelpers.py b/partIntfHelpers.py
index e088ef98b..d1fdd32ff 100644
--- a/partIntfHelpers.py
+++ b/partIntfHelpers.py
@@ -509,12 +509,12 @@ def confirmDeleteRequest(intf, request):
return
if request.type == REQUEST_VG:
- errmsg = _("You are about to delete the volume group \"%s\"."
- "\n\nALL logical volumes in this volume group "
- "will be lost!") % (request.volumeGroupName,)
+ errmsg = (_("You are about to delete the volume group \"%s\"."
+ "\n\nALL logical volumes in this volume group "
+ "will be lost!") % (request.volumeGroupName,))
elif request.type == REQUEST_LV:
- errmsg = _("You are about to delete the logical volume \"%s\".")
- % (request.logicalVolumeName,)
+ errmsg = (_("You are about to delete the logical volume \"%s\".")
+ % (request.logicalVolumeName,))
elif request.type == REQUEST_RAID:
errmsg = _("You are about to delete a RAID device.")
else: