修复推送-滴滴打车/美团

This commit is contained in:
Night Glow 2024-11-23 20:45:51 +08:00
parent 6465316017
commit 95b2e77cd4
2 changed files with 12 additions and 12 deletions

View File

@ -43,7 +43,7 @@ except Exception as e:
# 发送通知消息 # 发送通知消息
def send_notification_message(title): def send_notification_message(title):
try: try:
from sendNotify import send from notify import send
send(title, ''.join(all_print_list)) send(title, ''.join(all_print_list))
except Exception as e: except Exception as e:

View File

@ -31,7 +31,7 @@ else:
def send_notification_message(title): def send_notification_message(title):
try: try:
from send import send from notify import send
send(title, ''.join(all_print_list)) send(title, ''.join(all_print_list))
except Exception as e: except Exception as e: