diff --git a/beets/util/confit.py b/beets/util/confit.py index e552ba9fd..7af3bf733 100644 --- a/beets/util/confit.py +++ b/beets/util/confit.py @@ -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) ) )