Commit dfbd9608 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent edea6dcd
...@@ -225,11 +225,12 @@ def main(): ...@@ -225,11 +225,12 @@ def main():
for kind in sorted(kinds): for kind in sorted(kinds):
if kind != '': if kind != '':
print('\n\n>>> %ss:' % kind) print('\n>>> %ss:' % kind)
for name in sorted(bom): for name in sorted(bom):
info = bom[name] info = bom[name]
if info.kind == kind: if info.kind == kind:
print('%-20s\t%s\t%s' % (name, info.version, info.url)) # TODO autoalign
print('%-28s %-10s %s' % (name, info.version, info.url))
if __name__ == '__main__': if __name__ == '__main__':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment