Pep8 fixes for Windows module (#24349)

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde 2017-05-08 01:29:35 +05:30 committed by jhawkesworth
commit 9c5b55232c
12 changed files with 15 additions and 35 deletions

View file

@ -23,7 +23,7 @@ ANSIBLE_METADATA = {'metadata_version': '1.0',
'supported_by': 'core'}
DOCUMENTATION='''
DOCUMENTATION = '''
module: win_disk_image
short_description: Manage ISO/VHD/VHDX mounts on Windows hosts
version_added: 2.3
@ -47,7 +47,7 @@ author:
- Matt Davis (@nitzmahone)
'''
RETURN=r'''
RETURN = r'''
mount_path:
description: filesystem path where the target image is mounted
returned: when C(state) is C(present)
@ -55,7 +55,7 @@ mount_path:
sample: F:\
'''
EXAMPLES=r'''
EXAMPLES = r'''
# ensure an iso is mounted
- win_disk_image:
image_path: C:\install.iso
@ -74,4 +74,3 @@ EXAMPLES=r'''
state: absent
'''