From 408ea5e93efbc7a862c233961f680694f212ae56 Mon Sep 17 00:00:00 2001 From: John Garbutt Date: Thu, 7 Jan 2016 12:21:19 +0000 Subject: [PATCH] Fix sphinx warnings from signature_utils Spotted some warnings that don't appear to fail the build being output for the doc string in signature utils. This change fixes that. TrivialFix Change-Id: Ied6908019fe9640deebcb78bdd2ed77cd2fb7101 --- nova/signature_utils.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nova/signature_utils.py b/nova/signature_utils.py index 2364596b3e1e..78cfe7573996 100644 --- a/nova/signature_utils.py +++ b/nova/signature_utils.py @@ -182,14 +182,14 @@ def get_verifier(context, img_signature_certificate_uuid, :param context: the user context for authentication :param img_signature_certificate_uuid: - uuid of signing certificate stored in key manager + uuid of signing certificate stored in key manager :param img_signature_hash_method: - string denoting hash method used to compute signature + string denoting hash method used to compute signature :param img_signature: string of base64 encoding of signature :param img_signature_key_type: - string denoting type of keypair used to compute signature + string denoting type of keypair used to compute signature :returns: instance of - cryptography.hazmat.primitives.asymmetric.AsymmetricVerificationContext + cryptography.hazmat.primitives.asymmetric.AsymmetricVerificationContext :raises: SignatureVerificationError if we fail to build the verifier """ image_meta_props = {'img_signature_uuid': img_signature_certificate_uuid,