From a3f72cff3b5ad5cde0b434ee1775c272bec1a41a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BD=AF=E4=BB=B6=E5=B7=A5=E7=A8=8B=E5=B8=88=E6=9D=8E?= =?UTF-8?q?=E9=A3=9B?= Date: Wed, 10 May 2023 22:46:52 +0800 Subject: [PATCH] Fix typo (#762) --- examples/echo-encrypted/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/echo-encrypted/app.py b/examples/echo-encrypted/app.py index 8be8f05d8..55b5ed6cd 100644 --- a/examples/echo-encrypted/app.py +++ b/examples/echo-encrypted/app.py @@ -49,7 +49,7 @@ def wechat(): crypto = WeChatCrypto(TOKEN, EncodingAESKey, AppId) try: msg = crypto.decrypt_message(request.data, msg_signature, timestamp, nonce) - print(f"Descypted message: \n{msg}") + print(f"Decrypted message: \n{msg}") except (InvalidSignatureException, InvalidAppIdException): abort(403) msg = parse_message(msg)