From e87c5a35974cae5e0fbceaa0d9496fbe88d70bce Mon Sep 17 00:00:00 2001 From: Thomas S Hatch Date: Wed, 23 Oct 2013 11:44:09 -0600 Subject: [PATCH] fix bad indent --- salt/modules/file.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/salt/modules/file.py b/salt/modules/file.py index f076f1f9ba..9eb8a39f45 100644 --- a/salt/modules/file.py +++ b/salt/modules/file.py @@ -1096,11 +1096,11 @@ def blockreplace(path, if not done: if append_if_not_found: - # add the markers and content at the end of file - new_file.append(marker_start + '\n') - new_file.append(content + '\n') - new_file.append(marker_end + '\n') - done = True + # add the markers and content at the end of file + new_file.append(marker_start + '\n') + new_file.append(content + '\n') + new_file.append(marker_end + '\n') + done = True else: raise CommandExecutionError("Cannot edit marked block. Markers were not found in file.")