From 0d8f8a3cff13d8a820745934742d0b62248c44d8 Mon Sep 17 00:00:00 2001 From: J0J0 Todos Date: Thu, 22 Jun 2023 09:13:00 +0200 Subject: [PATCH] Fix ValueError in convert plugin auto_convert_keep --- beetsplug/convert.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beetsplug/convert.py b/beetsplug/convert.py index ef6865597..9b28523c6 100644 --- a/beetsplug/convert.py +++ b/beetsplug/convert.py @@ -200,8 +200,8 @@ class ConvertPlugin(BeetsPlugin): def auto_convert_keep(self, config, task): if self.config['auto_keep']: empty_opts = self.commands()[0].parser.get_default_values() - (dest, threads, path_formats, fmt, - pretend, hardlink, link) = self._get_opts_and_config(empty_opts) + (dest, threads, path_formats, fmt, pretend, + hardlink, link, playlist) = self._get_opts_and_config(empty_opts) items = task.imported_items() self._parallel_convert(dest, False, path_formats, fmt,