1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

Parse description properly, whoops

This commit is contained in:
Ciaran Gultnieks 2012-01-11 15:23:10 +00:00
parent a87ceabd04
commit 682fb03227

View File

@ -502,7 +502,7 @@ def parse_description(lines):
if not text.endswith('\n') and len(text) > 0:
text += ' '
text += line
return ''
return text
class BuildException(Exception):