From 202f3f5939751eff56567f206ae7e2a09e430dcc Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 30 Dec 2018 23:26:33 -0500 Subject: [PATCH] Make help output fit 80 columns Shorten the descriptions for --verbose and --ostree-verbose to fit 80 columns. Closes: #2519 Approved by: mwleeds --- app/flatpak-main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/flatpak-main.c b/app/flatpak-main.c index 43407123..14ad6765 100644 --- a/app/flatpak-main.c +++ b/app/flatpak-main.c @@ -149,8 +149,8 @@ opt_verbose_cb (const gchar *option_name, GOptionEntry global_entries[] = { - { "verbose", 'v', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, &opt_verbose_cb, N_("Print debug information during command processing, -vv for more detail"), NULL }, - { "ostree-verbose", 0, 0, G_OPTION_ARG_NONE, &opt_ostree_verbose, N_("Print OSTree debug information during command processing"), NULL }, + { "verbose", 'v', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, &opt_verbose_cb, N_("Show debug information, -vv for more detail"), NULL }, + { "ostree-verbose", 0, 0, G_OPTION_ARG_NONE, &opt_ostree_verbose, N_("Show OSTree debug information"), NULL }, { "help", '?', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, N_("Show help options"), NULL, NULL }, { NULL } };