diff --git a/legendary/utils/cli.py b/legendary/utils/cli.py index 8dfead5..b470491 100644 --- a/legendary/utils/cli.py +++ b/legendary/utils/cli.py @@ -18,20 +18,21 @@ def sdl_prompt(sdl_data, title): if '__required' in sdl_data: tags.extend(sdl_data['__required']['tags']) - print(f'You are about to install {title}, this game supports selective downloads.') - print('The following optional packs are available:') + print(f'You are about to install {title}, this application supports selective downloads.') + print('The following optional packs are available (tag - name):') for tag, info in sdl_data.items(): if tag == '__required': continue print(' *', tag, '-', info['name']) - print('Please enter a comma-separated list of optional packs to install (leave blank for defaults)') - examples = ','.join([g for g in sdl_data.keys() if g != '__required'][:2]) - choices = input(f'Additional packs [e.g. {examples}]: ') + examples = ', '.join([g for g in sdl_data.keys() if g != '__required'][:2]) + print(f'Please enter tags of pack(s) to install (space/comma-separated, e.g. "{examples}")') + print('Leave blank to use defaults (only required data will be downloaded).') + choices = input(f'Additional packs [Enter to confirm]: ') if not choices: return tags - for c in choices.split(','): + for c in choices.strip('"').replace(',', ' ').split(): c = c.strip() if c in sdl_data: tags.extend(sdl_data[c]['tags'])