Removing indentations

pull/4420/head
GGabriele 2016-09-14 16:01:12 +02:00 committed by Matt Clay
parent 852f5176a1
commit 58501d3650
1 changed files with 3 additions and 3 deletions

View File

@ -561,9 +561,9 @@ def write_on_file(content, filename, module):
path += '/'
filepath = '{0}{1}'.format(path, filename)
try:
report = open(filepath, 'w')
report.write(content)
report.close()
report = open(filepath, 'w')
report.write(content)
report.close()
except:
module.fail_json(msg="Error while writing on file.")