From 934ef046945d021b1ea2d92ca0b7dae79e9ab390 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 4 Aug 2022 08:27:48 -0700 Subject: [PATCH] change long timestamp option to --time-out so it doesn't clash with the timestamp parser name --- jc/cli_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/cli_data.py b/jc/cli_data.py index d07a2295..489f2126 100644 --- a/jc/cli_data.py +++ b/jc/cli_data.py @@ -10,7 +10,7 @@ long_options_map: Dict[str, List[str]] = { '--pretty': ['p', 'pretty print output'], '--quiet': ['q', 'suppress warnings (double to ignore streaming errors)'], '--raw': ['r', 'raw output'], - '--timestamp': ['t', 'add UTC Unix timestamp information to output'], + '--time-out': ['t', 'add UTC Unix timestamp information to output'], '--unbuffer': ['u', 'unbuffer output'], '--version': ['v', 'version info'], '--yaml-out': ['y', 'YAML output'],