mirror of
https://github.com/beetbox/beets.git
synced 2025-12-20 15:43:58 +01:00
Fixed error message for invalid config option.
This commit is contained in:
parent
7193f4e863
commit
e5e3eda676
1 changed files with 1 additions and 1 deletions
|
|
@ -357,7 +357,7 @@ class ConfigView(object):
|
|||
if value not in choices:
|
||||
raise ConfigValueError(
|
||||
'{0} must be one of {1}, not {2}'.format(
|
||||
self.name, repr(value), repr(list(choices))
|
||||
self.name, repr(list(choices)), repr(value)
|
||||
)
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue