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 3b50082 commit fc5dd02Copy full SHA for fc5dd02
1 file changed
ietf/submit/forms.py
@@ -177,7 +177,7 @@ def clean(self):
177
self.title = self.xmlroot.findtext('front/title').strip()
178
if type(self.title) is unicode:
179
self.title = unidecode(self.title)
180
- self.abstract = self.xmlroot.findtext('front/abstract').strip()
+ self.abstract = (self.xmlroot.findtext('front/abstract') or '').strip()
181
if type(self.abstract) is unicode:
182
self.abstract = unidecode(self.abstract)
183
author_info = self.xmlroot.findall('front/author')
0 commit comments