Skip to content

Commit 3d08afd

Browse files
committed
Save abstract into a cache attribute. Fixes ietf-tools#587
- Legacy-Id: 2849
1 parent 512f179 commit 3d08afd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

ietf/utils/draft.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,8 @@ def get_abstract(self):
299299
break
300300
identation = new_identation
301301
abstract.append(line)
302-
return '\n'.join(abstract)
302+
self._abstract = '\n'.join(abstract)
303+
return self._abstract
303304

304305

305306
# ------------------------------------------------------------------

0 commit comments

Comments
 (0)