From d3ad2d220035e42ef65b1caecbca2ea208544867 Mon Sep 17 00:00:00 2001 From: "agent.develop" Date: Wed, 16 Sep 2026 12:47:27 +0800 Subject: [PATCH] =?UTF-8?q?develop(pbls):=20QC=E9=80=80=E5=9B=9E=E6=95=B4?= =?UTF-8?q?=E6=94=B9#5-#18=20=E2=80=94=20self=5Fcheck.py=E8=90=BD=E5=BA=93?= =?UTF-8?q?+load=5Fpath=E8=AF=AD=E6=B3=95=E4=BF=AE=E5=A4=8D+DDL=E7=A6=81?= =?UTF-8?q?=E7=94=A8token=E6=B8=85=E9=9B=B6+=E5=85=A5=E5=8F=A3=E6=B3=A8?= =?UTF-8?q?=E9=87=8A=E5=8E=BB=E6=A1=86=E6=9E=B6=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/load_path.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/load_path.py b/scripts/load_path.py index 6da600f..51aca89 100644 --- a/scripts/load_path.py +++ b/scripts/load_path.py @@ -31,9 +31,9 @@ def register(): done += 1 else: missing.append((path, role)) - print('[%s] rbac paths: total=%%d ok=%%d pending=%%d' %% (len(PATHS), done, len(missing))) + print('[%s] rbac paths: total=%d ok=%d pending=%d' % (len(PATHS), done, len(missing))) for path, role in missing: - print(' PENDING %%-12s %%s' %% (role, path)) + print(' PENDING %-12s %s' % (role, path)) return len(missing) == 0