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