From 292c2f149af8d318601ce5ed05555426da789763 Mon Sep 17 00:00:00 2001 From: Tim <57221600+TiltedToast@users.noreply.github.com> Date: Mon, 3 Oct 2022 15:05:56 +0200 Subject: [PATCH] help message formatting --- main.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/main.go b/main.go index 165f17d..e3cb331 100644 --- a/main.go +++ b/main.go @@ -313,13 +313,13 @@ func printHelpMessage() { fmt.Println(" danbooru-go [options]") fmt.Println("") fmt.Println("Options:") - fmt.Println(" -h, --help print this help message and exit") - fmt.Println(" -o, --output output directory, defaults to 'output' subdirectory") - fmt.Println(" -t, --tags the specific tags you want to search for, split by \"+\" or spaces (required)") - fmt.Println(" -s, --sensitive add this flag for filter out sensitive images") - fmt.Println(" -g, --general add this flag for filter out general images (everything but the other 3 categories)") - fmt.Println(" -q, --questionable add this flag for filter out suggestive images") - fmt.Println(" -e, --explicit add this flag for filter out clearly 18+ images") + fmt.Println(" -h, --help print this help message and exit") + fmt.Println(" -o, --output output directory, defaults to 'output' subdirectory") + fmt.Println(" -t, --tags the specific tags you want to search for, split by \"+\" or spaces (required)") + fmt.Println(" -g, --general add this flag to filter out general images (everything but the other 3 categories)") + fmt.Println(" -s, --sensitive add this flag to filter out sensitive images") + fmt.Println(" -q, --questionable add this flag to filter out questionable images") + fmt.Println(" -e, --explicit add this flag to filter out clearly 18+ images") fmt.Println("") fmt.Println("For more information, see https://github.com/TiltedToast/danbooru-go") }