From 4b2ba8915687d5eabbb51d921bba169800bd93f3 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 18 Jan 2016 18:59:03 -0500 Subject: Add a missing docstring. --- coverage/summary.py | 1 + 1 file changed, 1 insertion(+) (limited to 'coverage/summary.py') diff --git a/coverage/summary.py b/coverage/summary.py index 94c44584..9227055e 100644 --- a/coverage/summary.py +++ b/coverage/summary.py @@ -50,6 +50,7 @@ class SummaryReporter(Reporter): outfile = sys.stdout def writeout(line): + """Write a line to the output, adding a newline.""" if env.PY2: line = line.encode(output_encoding()) outfile.write(line.rstrip()) -- cgit v1.2.1