diff options
author | Georg Brandl <georg@python.org> | 2011-09-21 10:19:09 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-09-21 10:19:09 +0200 |
commit | 7bc89fcaec767f8977e158d5d425404ca962706f (patch) | |
tree | 819a42fc9f1d2e460492c56f745aa3d66fc7ac4a /sphinx/ext/coverage.py | |
parent | f908267c5e6010deee541b3d8f708d915af7c557 (diff) | |
download | sphinx-git-7bc89fcaec767f8977e158d5d425404ca962706f.tar.gz |
Fix #650: add missing newline in coverage output.
Diffstat (limited to 'sphinx/ext/coverage.py')
-rw-r--r-- | sphinx/ext/coverage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/coverage.py b/sphinx/ext/coverage.py index 5ff81d704..af1b40266 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') |