Skip to content

Commit

Permalink
generate: Blank line error fix
Browse files Browse the repository at this point in the history
A new line is added at the end of bullets list

Fixes #4
  • Loading branch information
naveentata committed Feb 2, 2017
1 parent 9e29742 commit e4028f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion generate
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,10 @@ def recurse(aspect, level=0):
if subaspect.subaspects.items():
for subsub_name, subsub in sorted(subaspect.subaspects.items()):
output += "* `" + subsub_name + " <" + subsub_name + "/README.rst>`_\n"
output += "\n"
else:
output += "This aspect does not have any sub aspects.\n\n"

if subaspect.docs.example:
output += "Example\n"
output += "=======\n\n"
Expand Down

0 comments on commit e4028f3

Please sign in to comment.