From 1b6832d2ef888e125c26fa8c5153a2ed4885a1a5 Mon Sep 17 00:00:00 2001 From: Cleber Rosa Date: Thu, 28 Jul 2016 16:41:00 -0300 Subject: [PATCH] avocado/plugins/journal.py: make the goal of this plugin more clear We found some users of this plugin, and we're unsure they actually use this as intended. Even if they don't use it as intended, it may be a good thing, *but* we should make it clear what was the original goal of this feature. Signed-off-by: Cleber Rosa --- avocado/plugins/journal.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/avocado/plugins/journal.py b/avocado/plugins/journal.py index 504b2a8a..b01e40e8 100644 --- a/avocado/plugins/journal.py +++ b/avocado/plugins/journal.py @@ -126,8 +126,11 @@ class Journal(CLI): return self.parser = parser - run_subcommand_parser.output.add_argument('--journal', action='store_true', - help='Records test status changes') + help_msg = ('Records test status changes (for use with ' + 'avocado-journal-replay and avocado-server)') + run_subcommand_parser.output.add_argument('--journal', + action='store_true', + help=help_msg) def run(self, args): if 'journal' in args and args.journal is True: -- GitLab