This is an automated email from the ASF dual-hosted git repository.

mssun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-teaclave.git


The following commit(s) were added to refs/heads/master by this push:
     new bd3104e  Fix a message typo of TeaclaveException (#633)
bd3104e is described below

commit bd3104ef7dc955f4ac8006c1b9922784e816a344
Author: Gordon King <[email protected]>
AuthorDate: Mon Mar 14 14:47:31 2022 -0700

    Fix a message typo of TeaclaveException (#633)
---
 sdk/python/teaclave.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sdk/python/teaclave.py b/sdk/python/teaclave.py
index 4cf9930..e6e7aef 100644
--- a/sdk/python/teaclave.py
+++ b/sdk/python/teaclave.py
@@ -117,7 +117,8 @@ class TeaclaveService:
             self._verify_report(self._as_root_ca_cert_path,
                                 self._enclave_info_path, cert, self._name)
         except Exception as e:
-            raise TeaclaveException(f"Failed to verify attesation report: {e}")
+            raise TeaclaveException(
+                f"Failed to verify attestation report: {e}")
         self.channel = channel
 
         return self

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to