mirror of
https://github.com/beetbox/beets.git
synced 2026-01-07 08:32:06 +01:00
Merge pull request #1163 from mluds/embedart-windows-fix
embedart: Windows fix
This commit is contained in:
commit
a7959cfc00
1 changed files with 1 additions and 1 deletions
|
|
@ -150,7 +150,7 @@ def embed_album(album, maxwidth=None, quiet=False):
|
|||
log.info(u'No album art present: {0} - {1}'.
|
||||
format(album.albumartist, album.album))
|
||||
return
|
||||
if not os.path.isfile(imagepath):
|
||||
if not os.path.isfile(syspath(imagepath)):
|
||||
log.error(u'Album art not found at {0}'
|
||||
.format(displayable_path(imagepath)))
|
||||
return
|
||||
|
|
|
|||
Loading…
Reference in a new issue