From: hyokeun Date: Mon, 3 Sep 2018 04:32:28 +0000 (+0900) Subject: Skip only white spaced lines X-Git-Url: http://review.tizen.org/git/?p=scm%2Fmeta%2Fabs.git;a=commitdiff_plain;h=2057bae7dc3db53f6218b5c13e817d3d16a694bf Skip only white spaced lines --- 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: