On Thu, Feb 14, 2019, 11:09 Patrick McCarty <patrick.mccarty(a)intel.com
wrote:
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.
My intent is to have all content have full bundle eventually so I'm more
inclined to fix this by ignoring packages completely.
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
_______________________________________________
Dev mailing list
Dev(a)lists.clearlinux.org
https://lists.clearlinux.org/mailman/listinfo/dev