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 77dec6c commit 82bea23Copy full SHA for 82bea23
project_scrum/project_scrum.py
@@ -102,7 +102,10 @@ class project_user_stories(models.Model):
102
103
def _conv_html2text(self): # method that return a short text from description of user story
104
for d in self:
105
- d.description_short = BeautifulSoup(d.description or '').p.get_text()
+ try:
106
+ d.description_short = BeautifulSoup(d.description or '').p.get_text()
107
+ except:
108
+ pass
109
110
def _task_count(self): # method that calculate how many tasks exist
111
for p in self:
0 commit comments