Skip only white spaced lines
authorhyokeun <hyokeun.jeon@samsung.com>
Mon, 3 Sep 2018 04:32:28 +0000 (13:32 +0900)
committerhyokeun <hyokeun.jeon@samsung.com>
Mon, 3 Sep 2018 04:32:28 +0000 (13:32 +0900)
abs

diff --git a/abs b/abs
index f24f577..772a628 100755 (executable)
--- 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: