Skip to content

Commit

Permalink
Fix typo (wechatpy#762)
Browse files Browse the repository at this point in the history
  • Loading branch information
lifei authored May 10, 2023
1 parent f6dc104 commit a3f72cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/echo-encrypted/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a3f72cf

Please sign in to comment.