Add more space for OS display name

This commit is contained in:
Graham Pugh 2018-09-24 14:38:40 +02:00
parent f94eda697f
commit 7d7534dad3

View File

@ -535,7 +535,7 @@ def main():
pl['result'] = [] pl['result'] = []
# display a menu of choices (some seed catalogs have multiple installers) # display a menu of choices (some seed catalogs have multiple installers)
print '%2s %-15s %-10s %-8s %-11s %-20s %s' % ('#', 'ProductID', 'Version', print '%2s %-15s %-10s %-8s %-11s %-30s %s' % ('#', 'ProductID', 'Version',
'Build', 'Post Date', 'Title', 'Notes') 'Build', 'Post Date', 'Title', 'Notes')
for index, product_id in enumerate(product_info): for index, product_id in enumerate(product_info):
not_valid = '' not_valid = ''
@ -546,7 +546,7 @@ def main():
elif get_lowest_version(build_info[0],product_info[product_id]['version']) != build_info[0]: elif get_lowest_version(build_info[0],product_info[product_id]['version']) != build_info[0]:
not_valid = 'Unsupported macOS version' not_valid = 'Unsupported macOS version'
print '%2s %-15s %-10s %-8s %-11s %-20s %s' % ( print '%2s %-15s %-10s %-8s %-11s %-30s %s' % (
index + 1, index + 1,
product_id, product_id,
product_info[product_id]['version'], product_info[product_id]['version'],