mirror of
https://github.com/beetbox/beets.git
synced 2026-01-14 12:12:23 +01:00
playlist: Normalize path before lookup in changes dict
This commit is contained in:
parent
76a3e44aad
commit
d991e2a7d8
1 changed files with 1 additions and 1 deletions
|
|
@ -162,7 +162,7 @@ class PlaylistPlugin(beets.plugins.BeetsPlugin):
|
|||
lookup = original_path
|
||||
|
||||
try:
|
||||
new_path = self.changes[lookup]
|
||||
new_path = self.changes[beets.util.normpath(lookup)]
|
||||
except KeyError:
|
||||
tempfp.write(line)
|
||||
else:
|
||||
|
|
|
|||
Loading…
Reference in a new issue