From 623dee064ab8d7b9c6d3ceb389c2bf73d3a530ef Mon Sep 17 00:00:00 2001 From: Johnny Robeson Date: Sun, 25 Sep 2016 03:17:43 -0400 Subject: [PATCH] Use as_str_seq in pluginpath --- beets/ui/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/ui/__init__.py b/beets/ui/__init__.py index 7062d8078..422055dbd 100644 --- a/beets/ui/__init__.py +++ b/beets/ui/__init__.py @@ -1056,7 +1056,7 @@ optparse.Option.ALWAYS_TYPED_ACTIONS += ('callback',) def _load_plugins(config): """Load the plugins specified in the configuration. """ - paths = config['pluginpath'].get(confit.StrSeq(split=False)) + paths = config['pluginpath'].as_str_seq(split=False) paths = [util.normpath(p) for p in paths] log.debug(u'plugin paths: {0}', util.displayable_path(paths))