summaryrefslogtreecommitdiffstats
path: root/build/download/base.py
diff options
context:
space:
mode:
authorMilan Verespej <m.verespej@partner.samsung.com>2019-05-23 14:21:19 +0200
committerMilan Verespej <m.verespej@partner.samsung.com>2019-06-04 15:46:42 +0200
commit455be472dfdd4b3c9d2e1cc3c4962115760383f4 (patch)
tree076dc7f5d741d3685c6269f8ac6a5b0f92a2c53b /build/download/base.py
parentdf7d7cc1294c6ea1fcab2ed4ac2ee7c375b29651 (diff)
Add base download script
This script is supposed to be used for convenience when downloading data from multiple lists at once. Issue-ID: OOM-1803 Change-Id: I4031ed3650f7880883e299b43c79e6bfd08c886c Signed-off-by: Milan Verespej <m.verespej@partner.samsung.com>
Diffstat (limited to 'build/download/base.py')
-rw-r--r--build/download/base.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/download/base.py b/build/download/base.py
index 5bcd0ef6..d8b44839 100644
--- a/build/download/base.py
+++ b/build/download/base.py
@@ -38,7 +38,8 @@ def load_list(item_list):
:return: set of items from file
"""
with open(item_list, 'r') as f:
- return {item for item in (line.strip() for line in f) if item}
+ return {item for item in (line.strip() for line in f)
+ if item and not item.startswith('#')}
def init_progress(items_name):