From d5503e10e34f1a9314af8961ae67243c04856ef3 Mon Sep 17 00:00:00 2001 From: Womsxd <45663319+Womsxd@users.noreply.github.com> Date: Fri, 4 Feb 2022 10:57:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=91=E5=87=BD=E6=95=B0=E5=8D=95=E7=94=A8?= =?UTF-8?q?=E6=88=B7=E6=8E=A8=E9=80=81=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.py b/index.py index 9631a70..65c202b 100644 --- a/index.py +++ b/index.py @@ -6,10 +6,10 @@ from error import CookieError def main_handler(event: dict, context: dict): try: - status_code = main.main() + status_code, push_message = main.main() except CookieError: status_code = 0 - push.push(status_code, "脚本已执行") + push.push(status_code, push_message) print("云函数测试支持!") return 0