diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-18 18:59:03 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-18 18:59:03 -0500 |
commit | 4b2ba8915687d5eabbb51d921bba169800bd93f3 (patch) | |
tree | f153a7ba718674564439cca5a92a3cf657333d4d /coverage/summary.py | |
parent | a604ad1459fdc3a32462fbd67053be53767a143a (diff) | |
download | python-coveragepy-git-4b2ba8915687d5eabbb51d921bba169800bd93f3.tar.gz |
Add a missing docstring.
Diffstat (limited to 'coverage/summary.py')
-rw-r--r-- | coverage/summary.py | 1 |
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()) |