Skip to content

Commit e4028f3

Browse files
committed
generate: Blank line error fix
A new line is added at the end of bullets list Fixes coala#4
1 parent 9e29742 commit e4028f3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

generate

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,10 @@ def recurse(aspect, level=0):
156156
if subaspect.subaspects.items():
157157
for subsub_name, subsub in sorted(subaspect.subaspects.items()):
158158
output += "* `" + subsub_name + " <" + subsub_name + "/README.rst>`_\n"
159+
output += "\n"
159160
else:
160161
output += "This aspect does not have any sub aspects.\n\n"
161-
162+
162163
if subaspect.docs.example:
163164
output += "Example\n"
164165
output += "=======\n\n"

0 commit comments

Comments
 (0)