From 4e1d6cfb42ca9a9dedfa248c5a63e1faafca9802 Mon Sep 17 00:00:00 2001 From: Osma Suominen Date: Thu, 24 Jan 2019 15:51:13 +0200 Subject: [PATCH] Adjust columns for list-project to account for longer project IDs and names --- annif/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annif/cli.py b/annif/cli.py index 73132d553..e4238c7ac 100644 --- a/annif/cli.py +++ b/annif/cli.py @@ -79,7 +79,7 @@ def run_list_projects(): List available projects. """ - template = "{0: <15}{1: <30}{2: <15}" + template = "{0: <25}{1: <45}{2: <8}" header = template.format("Project ID", "Project Name", "Language") click.echo(header)