Pundle definition doc strings were recently added to the 'packages'
file, which broke make-dot.py. Fix the issue by extracting just the
pundle name for each line.
Signed-off-by: Patrick McCarty <patrick.mccarty(a)intel.com>
---
make-dot.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/make-dot.py b/make-dot.py
index 00c5dd3..af86809 100755
--- a/make-dot.py
+++ b/make-dot.py
@@ -32,7 +32,7 @@ def build_bundle_dictionary():
for line in package_file:
if line[0] == "#":
continue
- line = line.strip()
+ line = line.strip().split()[0]
bundledict[line] = Bundle(line, 'Active', [], line)
return bundledict
--
2.20.1