From 419f0db972250eb390f39afd9fc7f2549c083478 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Fri, 28 Feb 2003 22:33:32 +0000 Subject: oops, have to group the multiline strings --- partIntfHelpers.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'partIntfHelpers.py') 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: -- cgit