From 682fb032279968712543570f8f4a0ee237424234 Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Wed, 11 Jan 2012 15:23:10 +0000 Subject: [PATCH] Parse description properly, whoops --- common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.py b/common.py index cac6a345..5aea8db2 100644 --- a/common.py +++ b/common.py @@ -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):