From 885001aab6d7b059a60703eaa94eb980ebe4a91c Mon Sep 17 00:00:00 2001 From: JustAnotherArchivist Date: Thu, 1 Apr 2021 06:57:44 +0000 Subject: [PATCH] Fix --no-table help text (leftover from pre-pure-Python) --- archivebot-jobs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebot-jobs b/archivebot-jobs index b58832c..1fb714b 100755 --- a/archivebot-jobs +++ b/archivebot-jobs @@ -115,7 +115,7 @@ parser.add_argument('--mode', choices = ('table', 'dashboard-regex', 'con-d-comm ' atdash: print the URL for displaying the matched jobs on atdash', ])) parser.add_argument('--no-colours', '--no-colors', action = 'store_true', help = "Don't colourise the last activity column if it's been a while. (Table mode only)") -parser.add_argument('--no-table', action = 'store_true', help = 'Raw output without feeding through column(1); columns are separated by tabs. (Table mode only)') +parser.add_argument('--no-table', action = 'store_true', help = 'Raw non-columnised output; columns are separated by tabs. (Table mode only)') parser.add_argument('--no-truncate', action = 'store_true', help = 'Disable truncating long values if the terminal width would be exceeded. (Table mode without --no-table only)') parser.add_argument('--dates', action = 'store_true', help = 'Print dates instead of elapsed times for queued/started/last active columns. (Table mode only)') parser.add_argument('--replace-concurrency', nargs = 1, metavar = 'CON', type = int, help = 'Replace the delay values with the specified ones. (con-d-commands mode only)')