From 3332a470ba193d289156b32f6fca333b17696d5c Mon Sep 17 00:00:00 2001 From: Harold <8866033@gmail.com> Date: Thu, 23 Apr 2026 18:50:52 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8D=E5=A4=AA=E7=81=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- py/不太灵.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/py/不太灵.py b/py/不太灵.py index bbd5e6c..6fa2d2e 100644 --- a/py/不太灵.py +++ b/py/不太灵.py @@ -241,12 +241,12 @@ class Spider(BaseSpider): if kind == "other": kind = self._normalize_drive_key(group_name) counters[kind] = counters.get(kind, 0) + 1 - line_name = f"{kind}#{counters[kind]}" + line_name = f"{kind}@{counters[kind]}" entries.append((line_name, link)) entries.sort( key=lambda pair: ( - self.DRIVE_ORDER.get(pair[0].split("#")[0], 999), - int(pair[0].split("#")[1]), + self.DRIVE_ORDER.get(pair[0].split("@")[0], 999), + int(pair[0].split("@")[1]), pair[0], ) )