Skip to content

Commit

Permalink
added newlines to cfchecker report
Browse files Browse the repository at this point in the history
  • Loading branch information
cehbrecht committed May 15, 2017
1 parent 4db8908 commit ca0ea5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hummingbird/processes/wps_cfchecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def _handler(self, request, response):
cf_report = cf_check(dataset, version=request.inputs['cf_version'][0].data)
with open('cfchecker_output.txt', 'a') as fp:
response.outputs['output'].file = fp.name
fp.write(cf_report)
fp.write(cf_report + "\n\n")
count = count + 1
response.update_status("cfchecker: %d/%d" % (count, max_count), int(count * step))
response.update_status("cfchecker done.", 100)
Expand Down

0 comments on commit ca0ea5c

Please sign in to comment.