mirror of
https://github.com/beetbox/beets.git
synced 2025-12-16 05:34:47 +01:00
convert: playlist: Fix redundant join path
It's done in _get_opts_and_config already.
This commit is contained in:
parent
c0b1bc9867
commit
d589e77ade
1 changed files with 1 additions and 1 deletions
|
|
@ -494,7 +494,7 @@ class ConvertPlugin(BeetsPlugin):
|
|||
if playlist:
|
||||
self._log.info("Creating playlist file: {0}", playlist)
|
||||
if not pretend:
|
||||
with open(os.path.join(dest, playlist), "w") as playlist_file:
|
||||
with open(playlist, "w") as playlist_file:
|
||||
playlist_file.write("#EXTM3U" + "\n")
|
||||
|
||||
self._parallel_convert(dest, opts.keep_new, path_formats, fmt, pretend,
|
||||
|
|
|
|||
Loading…
Reference in a new issue