ansible/roles.py: fix formating of role names

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-06-13 15:18:35 +02:00
parent 49df6d5996
commit 750e12d1ad
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
1 changed files with 1 additions and 1 deletions

View File

@ -380,7 +380,7 @@ def main():
if args.filter not in req.name:
continue
role = processed_roles[req.name]
print('%-40s --- %22s (Git: %s | Req: %s)' %
print('%-44s --- %22s (Git: %s | Req: %s)' %
(BOLD(role.name), role.state,
CYAN(role.current_commit[:8]),
commit_or_any(role.required)))