develop(pbls): QC退回整改#5-#18 — self_check.py落库+load_path语法修复+DDL禁用token清零+入口注释去框架名

This commit is contained in:
agent.develop 2026-09-16 12:47:27 +08:00
parent d5638e470d
commit d3ad2d2200

View File

@ -31,9 +31,9 @@ def register():
done += 1 done += 1
else: else:
missing.append((path, role)) 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: for path, role in missing:
print(' PENDING %%-12s %%s' %% (role, path)) print(' PENDING %-12s %s' % (role, path))
return len(missing) == 0 return len(missing) == 0