Skip to content

Commit

Permalink
v0.10.1.dev1: extension of previous bugfix [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
paulkorir committed Oct 26, 2023
1 parent 2830f1e commit 11cd0fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sfftk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

BASE_DIR = os.path.dirname(__file__)

SFFTK_VERSION = 'v0.10.1.dev0'
SFFTK_VERSION = 'v0.10.1.dev1'
2 changes: 1 addition & 1 deletion sfftk/notes/find.py
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ def _render(self):
rendered_field = field.render(self._row_data, self._index)
stripped_rendered_field = list(map(lambda f: f.strip(), rendered_field))
# we will strip all leading and trailing whitespace and join all wrapped lines
if str(field).strip() in ['description', 'label']: # the description needs spaces
if str(field).strip() in ['description', 'label', 'description (title)']: # the description needs spaces
rendered.append(' '.join(stripped_rendered_field).strip())
else:
rendered.append(''.join(stripped_rendered_field))
Expand Down

0 comments on commit 11cd0fb

Please sign in to comment.