mirror of
https://github.com/beetbox/beets.git
synced 2026-02-13 19:03:37 +01:00
convert: playlist: Disable prefix in syspath on
in load method when loading media files to content list.
This commit is contained in:
parent
31b9e7afeb
commit
e4213714ba
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ class M3UFile():
|
|||
if line.startswith("#"):
|
||||
# Some EXTM3U comment, do something. FIXME
|
||||
continue
|
||||
self.media_list.append(syspath(line))
|
||||
self.media_list.append(syspath(line, prefix=False))
|
||||
if not self.media_list:
|
||||
raise EmptyPlaylistError
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue