diff --git a/main.py b/main.py index 5f6febe..f2e757a 100644 --- a/main.py +++ b/main.py @@ -56,7 +56,7 @@ def push(content): total_html = session.get(url = user_url,headers = header).text; total = re.findall('(.*?) GB', total_html, re.S); # 进行推送 - content = '签到前剩余: ' + remain[0] + 'GB ' + content + ' 当前总共剩余: ' + total[0] + 'GB'; + content = '签到前剩余总流量: ' + remain[0] + 'GB\n' + content + '\n当前剩余总流量: ' + total[0] + 'GB'; push(content) except: content = '签到失败'