1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Styling: indentation

This commit is contained in:
Michael DeHaan 2013-06-30 18:51:11 -04:00
parent 0b251d840b
commit 899ea4de82

View file

@ -134,9 +134,9 @@ EXAMPLES = '''
def dolink(src, path, state, module):
try:
if state == 'hard':
os.link(src,path)
os.link(src,path)
else:
os.symlink(src, path)
os.symlink(src, path)
except OSError, e:
module.fail_json(path=path, msg='Error while linking: %s' % str(e))