mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
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.
This commit is contained in:
parent
8dc556d420
commit
cb630c45f6
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue