Skip to content
Snippets Groups Projects
Commit ce0d5734 authored by Gigg, Martyn Anthony's avatar Gigg, Martyn Anthony
Browse files

Fix property descriptions that span multiple lines

Simply replaces the new line with a space and lets the output formatter
take care of displaying it.
Refs #9521
parent edcf7fd0
No related branches found
No related tags found
No related merge requests found
...@@ -40,7 +40,7 @@ class PropertiesDirective(BaseDirective): ...@@ -40,7 +40,7 @@ class PropertiesDirective(BaseDirective):
str(direction_string[prop.direction]), str(direction_string[prop.direction]),
str(prop.type), str(prop.type),
str(self._get_default_prop(prop)), str(self._get_default_prop(prop)),
str(prop.documentation) str(prop.documentation.replace("\n", " "))
)) ))
# Build and add the properties to the ReST table. # Build and add the properties to the ReST table.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment