From 9941b9a92adc6c3b138272d23621f92d82d7dff0 Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Tue, 6 Feb 2018 10:59:55 +0000 Subject: [PATCH] commands/show: Add missing assistant parameters and RT param note. --- wa/commands/show.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wa/commands/show.py b/wa/commands/show.py index e0759ecd..16a67f4c 100644 --- a/wa/commands/show.py +++ b/wa/commands/show.py @@ -95,4 +95,6 @@ def get_rst_from_target(target): text += get_params_rst(target.conn_params) text += get_params_rst(target.platform_params) text += get_params_rst(target.target_params) + text += get_params_rst(target.assistant_params) + text += '*Note:* For available runtime parameters please see the documentation' return text + '\n'