From 81e8c03e38b5633ca3c05bb134fa6c62035d6f2d Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Thu, 9 Dec 2010 17:11:59 -0500 Subject: [PATCH] strip task while extracting from blends file --- tools/blends-inject | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/blends-inject b/tools/blends-inject index 71d3fc8..a7bdba1 100755 --- a/tools/blends-inject +++ b/tools/blends-inject @@ -214,7 +214,7 @@ def parse_debian_blends(f='debian/blends'): if format_clean: format_ = format_[:-6] elif kl == 'tasks': - tasks = v.split(',') + tasks = [x.strip() for x in v.split(',')] newtasks = pkg is not None # either we need to provide tune-ups # for current package elif kl in PKG_FIELDS: # new package -- 2.39.5