mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
Fix a too-long line
This commit is contained in:
parent
f767f1c2a3
commit
4db91c8bd2
1 changed files with 3 additions and 1 deletions
|
|
@ -200,7 +200,9 @@ class EditPlugin(plugins.BeetsPlugin):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# Confirm the changes.
|
# Confirm the changes.
|
||||||
choice = ui.input_options(('continue Editing', 'apply', 'cancel'))
|
choice = ui.input_options(
|
||||||
|
('continue Editing', 'apply', 'cancel')
|
||||||
|
)
|
||||||
if choice == 'a': # Apply.
|
if choice == 'a': # Apply.
|
||||||
return True
|
return True
|
||||||
elif choice == 'c': # Cancel.
|
elif choice == 'c': # Cancel.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue