From 21f92b5491c93a72ea3e3730c5c1335bbbcc6b94 Mon Sep 17 00:00:00 2001 From: Ghlerrix Date: Sat, 2 Sep 2023 15:42:20 +0800 Subject: [PATCH] =?UTF-8?q?[fix]=20=E4=BF=AE=E5=A4=8DpushUrl=E6=9C=AA?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E7=9B=B8=E5=85=B3Secrets=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 之前的修复版本未考虑充分,这次从yml中进行空值判断 --- pushUrl.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pushUrl.py b/pushUrl.py index d67edf14..fe5a1bfe 100644 --- a/pushUrl.py +++ b/pushUrl.py @@ -19,8 +19,6 @@ def parse_stiemap(site): try: result = requests.get(site) big = re.findall('(.*?)', result.content.decode('utf-8'), re.S) - print('当前已有url:') - print(list(big)) return list(big) except: print('请检查你的url是否有误。')