From ee666b4ab8b8e0077fd65ae938af85afeba1a6dd Mon Sep 17 00:00:00 2001 From: MiyakoMeow <110924386+MiyakoMeow@users.noreply.github.com> Date: Mon, 3 Mar 2025 06:40:18 +0800 Subject: [PATCH] fix: optimize tips --- fetch_ips.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fetch_ips.py b/fetch_ips.py index e33b7d304..87b313c4b 100644 --- a/fetch_ips.py +++ b/fetch_ips.py @@ -137,11 +137,11 @@ async def main() -> None: ip = await get_ip(session, github_url) if ip is None: print(f"{github_url}: IP Not Found") - ip = "# Not available" + ip = "# IP Address Not Found" content += ip.ljust(30) + github_url global PING_LIST if PING_LIST.get(ip) is not None and PING_LIST.get(ip) == PING_TIMEOUT_SEC * 1000: - content += " # Not Available" + content += " # Timeout" content += "\n" content_list.append((ip, github_url,)) except Exception: