Jiří Moskovčák has uploaded a new change for review. Change subject: fixed long line to make pep8 happy ......................................................................
fixed long line to make pep8 happy Change-Id: Ia8474a3c97e600a285aa3f843e8fb96ae4ebcf37 Signed-off-by: Jiri Moskovcak <[email protected]> --- M ovirt_hosted_engine_ha/lib/storage_backends.py 1 file changed, 3 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-hosted-engine-ha refs/changes/79/36179/1 diff --git a/ovirt_hosted_engine_ha/lib/storage_backends.py b/ovirt_hosted_engine_ha/lib/storage_backends.py index 3b14683..fe5008d 100644 --- a/ovirt_hosted_engine_ha/lib/storage_backends.py +++ b/ovirt_hosted_engine_ha/lib/storage_backends.py @@ -148,7 +148,9 @@ def __init__(self, image_uuid, volume_uuid, path=None): if any(k in (None, "None", "") for k in (image_uuid, volume_uuid)): - raise ValueError("image_uuid or volume_uuid is missing or None") + raise ValueError( + "image_uuid or volume_uuid is missing or None" + ) self.image_uuid = image_uuid self.volume_uuid = volume_uuid self.path = path -- To view, visit http://gerrit.ovirt.org/36179 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ia8474a3c97e600a285aa3f843e8fb96ae4ebcf37 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-hosted-engine-ha Gerrit-Branch: master Gerrit-Owner: Jiří Moskovčák <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
