Fixed issue with newlines.

pull/1/head
Tullio Facchinetti 7 years ago
parent 3d114f10d4
commit df0b0b5bd2

@ -30,7 +30,7 @@ def fmt_app(app):
for art in app['articles']:
st += "* [{}]({}) (rev. {})".format(art['title'], art['url'], art['date'])
if 'description' in art:
st += ' - ' + art['description']
st += ' - ' + art['description'] + '\n'
st += '\n'
return(st)

Loading…
Cancel
Save