summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJ0J0 T <jojo@peek-a-boo.at>2022-08-22 12:22:39 +0200
committerJ0J0 Todos <jojo@peek-a-boo.at>2023-03-29 07:46:08 +0200
commitcb630c45f6dadb43cbb4beef26434f71676b0b1b (patch)
treee81b0d47da156d68b0f604d053b6a14de1fe1a01
parent8dc556d4204df2cb760e950a68dda050eaee179f (diff)
convert: playlist: Also use syspath() for contents
of playlist. We want to have processed every entry in the media list we pass to the M3UFile instance.
-rw-r--r--beetsplug/convert.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/beetsplug/convert.py b/beetsplug/convert.py
index 416fb9502..88c99e53d 100644
--- a/beetsplug/convert.py
+++ b/beetsplug/convert.py
@@ -485,9 +485,9 @@ class ConvertPlugin(BeetsPlugin):
# computers.
self._log.info("Creating playlist file: {0}", playlist)
items_paths = [
- item.destination(
+ util.syspath(item.destination(
basedir=dest, path_formats=path_formats, fragment=True
- ) for item in items
+ )) for item in items
]
if not pretend:
m3ufile = M3UFile(playlist)