Skip to content

Commit

Permalink
Fixing DOCUMENTATION block.
Browse files Browse the repository at this point in the history
  • Loading branch information
corbie committed Nov 7, 2017
1 parent a202b70 commit 665d9bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/ansible/modules/network/junos/junos_rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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']),
)

Expand Down

0 comments on commit 665d9bb

Please sign in to comment.