mirror of
https://github.com/beetbox/beets.git
synced 2025-12-07 09:04:33 +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.
|
# computers.
|
||||||
self._log.info("Creating playlist file: {0}", playlist)
|
self._log.info("Creating playlist file: {0}", playlist)
|
||||||
items_paths = [
|
items_paths = [
|
||||||
item.destination(
|
util.syspath(item.destination(
|
||||||
basedir=dest, path_formats=path_formats, fragment=True
|
basedir=dest, path_formats=path_formats, fragment=True
|
||||||
) for item in items
|
)) for item in items
|
||||||
]
|
]
|
||||||
if not pretend:
|
if not pretend:
|
||||||
m3ufile = M3UFile(playlist)
|
m3ufile = M3UFile(playlist)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue