summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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: