summaryrefslogtreecommitdiff
path: root/coverage/summary.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-01-18 18:59:03 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-01-18 18:59:03 -0500
commit4b2ba8915687d5eabbb51d921bba169800bd93f3 (patch)
treef153a7ba718674564439cca5a92a3cf657333d4d /coverage/summary.py
parenta604ad1459fdc3a32462fbd67053be53767a143a (diff)
downloadpython-coveragepy-git-4b2ba8915687d5eabbb51d921bba169800bd93f3.tar.gz
Add a missing docstring.
Diffstat (limited to 'coverage/summary.py')
-rw-r--r--coverage/summary.py1
1 files changed, 1 insertions, 0 deletions
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())