From 7f5820274f60375cd217a78733467da569330df8 Mon Sep 17 00:00:00 2001 From: Elias Date: Mon, 7 May 2018 16:43:46 +0200 Subject: [PATCH] Update call method for parse_cli_textfsm (#38437) +label: docsite_pr --- docs/docsite/rst/user_guide/playbooks_filters.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/user_guide/playbooks_filters.rst b/docs/docsite/rst/user_guide/playbooks_filters.rst index a908605945..b5e3615e49 100644 --- a/docs/docsite/rst/user_guide/playbooks_filters.rst +++ b/docs/docsite/rst/user_guide/playbooks_filters.rst @@ -470,7 +470,7 @@ The network filters also support parsing the output of a CLI command using the TextFSM library. To parse the CLI output with TextFSM use the following filter:: - {{ output | parse_cli_textfsm('path/to/fsm') }} + {{ output.stdout[0] | parse_cli_textfsm('path/to/fsm') }} Use of the TextFSM filter requires the TextFSM library to be installed.