From Dan Kenigsberg <[email protected]>: Dan Kenigsberg has uploaded a new change for review.
Change subject: fix multiline strings ...................................................................... fix multiline strings remove internal spaces Change-Id: I5ff32c3e64f057dd8f1c6f6f18e8a7628d6ca93b Signed-off-by: Dan Kenigsberg <[email protected]> --- M lib/vdsm/storage/exception.py 1 file changed, 10 insertions(+), 8 deletions(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/76/75976/1 diff --git a/lib/vdsm/storage/exception.py b/lib/vdsm/storage/exception.py index b941ccc..cbd6fb9 100644 --- a/lib/vdsm/storage/exception.py +++ b/lib/vdsm/storage/exception.py @@ -1562,10 +1562,11 @@ self.value = ("vgname=%s mdasize=%s " "mdafree=%s" % (vgname, mdasize, mdafree)) code = 613 - message = """Error - The system has reached the high watermark on the VG - metadata area size. This is due high number of Vdisks or - large Vdisks size allocated on this specific VG. Please call - Redhat Global Support to address the issue""" + message = ( + "Error - The system has reached the high watermark on the VG " + "metadata area size. This is due high number of Vdisks or " + "large Vdisks size allocated on this specific VG. Please call " + "Support to address the issue") class SmallVgMetadata(StorageException): @@ -1573,10 +1574,11 @@ self.value = ("vgname=%s mdasize=%s " "mdafree=%s" % (vgname, mdasize, mdafree)) code = 614 - message = """Warning - The allocated VG metadata area size is too small, - which might limit its capacity (the number of Vdisks and/or - their size). Refer to GSS knowledge base to understand the - issue and how to resolve it""" + message = ( + "Warning - The allocated VG metadata area size is too small, " + "which might limit its capacity (the number of Vdisks and/or " + "their size). Refer to GSS knowledge base to understand the " + "issue and how to resolve it") class CouldNotResizePhysicalVolume(StorageException): -- To view, visit https://gerrit.ovirt.org/75976 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I5ff32c3e64f057dd8f1c6f6f18e8a7628d6ca93b Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Dan Kenigsberg <[email protected]> _______________________________________________ vdsm-patches mailing list -- [email protected] To unsubscribe send an email to [email protected]
