Skip to content

Commit

Permalink
Fix property descriptions that span multiple lines
Browse files Browse the repository at this point in the history
Simply replaces the new line with a space and lets the output formatter
take care of displaying it.
Refs #9521
  • Loading branch information
martyngigg committed May 28, 2014
1 parent edcf7fd commit ce0d573
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -40,7 +40,7 @@ def _populate_properties_table(self):
str(direction_string[prop.direction]),
str(prop.type),
str(self._get_default_prop(prop)),
str(prop.documentation)
str(prop.documentation.replace("\n", " "))
))

# Build and add the properties to the ReST table.
Expand Down

0 comments on commit ce0d573

Please sign in to comment.