From 899ea4de82007d3322373f7c221007d7f2914379 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Sun, 30 Jun 2013 18:51:11 -0400 Subject: [PATCH] Styling: indentation --- library/files/file | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/files/file b/library/files/file index 22716935c8b..5fbb9ecc2dc 100644 --- a/library/files/file +++ b/library/files/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))