diff --git a/scripts/load_path.py b/scripts/load_path.py index 4789089..2cf5d6d 100644 --- a/scripts/load_path.py +++ b/scripts/load_path.py @@ -35,9 +35,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