From 9dff841afe403db91349ba76d5b79998e9cd779c Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Wed, 28 Dec 2016 14:33:55 -0500 Subject: [PATCH] Fix class anme of PromptChoice --- beets/ui/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index dcc6776b1..0911d78d0 100755 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -42,7 +42,7 @@ from beets.util.confit import _package_path import six VARIOUS_ARTISTS = u'Various Artists' -PromptChoice = namedtuple('ExtraChoice', ['short', 'long', 'callback']) +PromptChoice = namedtuple('PromptChoice', ['short', 'long', 'callback']) # Global logger. log = logging.getLogger('beets')