From 665d9bb120149f4e5cd5aeaf99ea8fb6cd1ae4ab Mon Sep 17 00:00:00 2001 From: Corban Johnson Date: Tue, 7 Nov 2017 14:32:34 -0600 Subject: [PATCH] Fixing DOCUMENTATION block. --- lib/ansible/modules/network/junos/junos_rpc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ansible/modules/network/junos/junos_rpc.py b/lib/ansible/modules/network/junos/junos_rpc.py index a1edc70603cb15..3078f2ba02a659 100644 --- a/lib/ansible/modules/network/junos/junos_rpc.py +++ b/lib/ansible/modules/network/junos/junos_rpc.py @@ -43,6 +43,7 @@ description: - The C(attrs) arguments defines a list of attributes and their values to set for the RPC call. This accepts a dictionary of key-values. + version_added: "2.5" output: description: - The C(output) argument specifies the desired output of the @@ -112,7 +113,7 @@ def main(): argument_spec = dict( rpc=dict(required=True), args=dict(type='dict'), - attrs=dict(type='dict', version_added="2.5"), + attrs=dict(type='dict'), output=dict(default='xml', choices=['xml', 'json', 'text']), )