mirror of
https://github.com/beetbox/beets.git
synced 2026-01-09 01:15:38 +01:00
added comment
This commit is contained in:
parent
f550dfecf1
commit
89d38caea6
1 changed files with 2 additions and 2 deletions
|
|
@ -380,7 +380,7 @@ def input_select_items(prompt, items, rep):
|
|||
choice = input_options(
|
||||
('y', 'n', 's'), False,
|
||||
'%s? (Yes/no/select)' % prompt)
|
||||
print()
|
||||
print() # go to a new line
|
||||
if choice == 'y':
|
||||
out_items = items
|
||||
elif choice == 's':
|
||||
|
|
@ -388,7 +388,7 @@ def input_select_items(prompt, items, rep):
|
|||
rep(item)
|
||||
if input_yn('%s? (yes/no)' % prompt, True):
|
||||
out_items.append(item)
|
||||
print()
|
||||
print() # go to a new line
|
||||
return out_items
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue