Metrics: Add empty line at end

This commit is contained in:
Raphael Michel
2017-03-25 22:21:22 +01:00
parent 48912bdf55
commit 6da0125b7d

View File

@@ -41,6 +41,6 @@ def serve_metrics(request):
for metric, value in m.items():
output.append("{} {}".format(metric, str(value)))
content = "\n".join(output)
content = "\n".join(output) + "\n"
return HttpResponse(content)