summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-09-21 10:19:09 +0200
committerGeorg Brandl <georg@python.org>2011-09-21 10:19:09 +0200
commitf5c8b5c13c94fb990d2b34a35ca745d305e952a4 (patch)
tree819a42fc9f1d2e460492c56f745aa3d66fc7ac4a
parent55008df32c45fa705bd46092d3cfe2c9d86c41f5 (diff)
downloadsphinx-f5c8b5c13c94fb990d2b34a35ca745d305e952a4.tar.gz
Fix #650: add missing newline in coverage output.
-rw-r--r--sphinx/ext/coverage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/coverage.py b/sphinx/ext/coverage.py
index 5ff81d70..af1b4026 100644
--- a/sphinx/ext/coverage.py
+++ b/sphinx/ext/coverage.py
@@ -232,7 +232,7 @@ class CoverageBuilder(Builder):
if not methods:
op.write(' * %s\n' % name)
else:
- op.write(' * %s -- missing methods:\n' % name)
+ op.write(' * %s -- missing methods:\n\n' % name)
op.writelines(' - %s\n' % x for x in methods)
op.write('\n')