From 2057bae7dc3db53f6218b5c13e817d3d16a694bf Mon Sep 17 00:00:00 2001 From: hyokeun Date: Mon, 3 Sep 2018 13:32:28 +0900 Subject: [PATCH] Skip only white spaced lines --- abs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/abs b/abs index f24f577..772a628 100755 --- a/abs +++ b/abs @@ -563,6 +563,8 @@ class Source(object): self.b_multi = True with open(os.path.join(self.workspace, self.multi_conf_file)) as f: for line in f: + if not line.strip(): + continue file_path = os.path.join(self.workspace, line.rstrip()) self.project_list.append(self.set_properties(file_path)) else: -- 2.7.4