We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82bea23 commit b4b030fCopy full SHA for b4b030f
project_scrum/project_scrum.py
@@ -103,7 +103,7 @@ class project_user_stories(models.Model):
103
def _conv_html2text(self): # method that return a short text from description of user story
104
for d in self:
105
try:
106
- d.description_short = BeautifulSoup(d.description or '').p.get_text()
+ d.description_short = BeautifulSoup(d.description or '').get_text()[:99]
107
except:
108
pass
109
0 commit comments