mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-06 10:40:32 -07:00
Fixed raw strings, to align with the rest of the project
This commit is contained in:
parent
bf389ea3fa
commit
a17a84a060
1 changed files with 4 additions and 4 deletions
|
@ -6,7 +6,7 @@
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = r"""
|
||||||
module: xen_orchestra_instance
|
module: xen_orchestra_instance
|
||||||
short_description: Management of instances on Xen Orchestra
|
short_description: Management of instances on Xen Orchestra
|
||||||
description:
|
description:
|
||||||
|
@ -73,10 +73,10 @@ seealso:
|
||||||
- name: Xen Orchestra documentation
|
- name: Xen Orchestra documentation
|
||||||
description: Official documentation of Xen Orchestra CLI.
|
description: Official documentation of Xen Orchestra CLI.
|
||||||
link: https://docs.xen-orchestra.com/architecture#xo-cli-cli
|
link: https://docs.xen-orchestra.com/architecture#xo-cli-cli
|
||||||
'''
|
"""
|
||||||
|
|
||||||
|
|
||||||
EXAMPLES = r'''
|
EXAMPLES = r"""
|
||||||
- name: Create a new virtual machine
|
- name: Create a new virtual machine
|
||||||
community.general.xen_orchestra:
|
community.general.xen_orchestra:
|
||||||
api_host: xen-orchestra.lab
|
api_host: xen-orchestra.lab
|
||||||
|
@ -120,7 +120,7 @@ EXAMPLES = r'''
|
||||||
password: passw0rd
|
password: passw0rd
|
||||||
validate_certs: false
|
validate_certs: false
|
||||||
state: absent
|
state: absent
|
||||||
'''
|
"""
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import ssl
|
import ssl
|
||||||
|
|
Loading…
Add table
Reference in a new issue