From 1a8b20f3541992d4e5c575bfa2b166be5f5868df Mon Sep 17 00:00:00 2001 From: Johnny Robeson Date: Sun, 25 Sep 2016 03:14:24 -0400 Subject: [PATCH] Expose split arg from StrSeq in as_str_seq --- beets/util/confit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beets/util/confit.py b/beets/util/confit.py index 276a8cbf9..373e05ffc 100644 --- a/beets/util/confit.py +++ b/beets/util/confit.py @@ -407,11 +407,11 @@ class ConfigView(object): """ return self.get(Number()) - def as_str_seq(self): + def as_str_seq(self, split=True): """Get the value as a sequence of strings. Equivalent to `get(StrSeq())`. """ - return self.get(StrSeq()) + return self.get(StrSeq(split=split)) def as_str(self): """Get the value as a (Unicode) string. Equivalent to