From c76f8bee46aa85a29a38cff414008a3f7c15cd43 Mon Sep 17 00:00:00 2001 From: Michael Ludwig Date: Sun, 21 Dec 2014 13:08:02 -0500 Subject: [PATCH] embedart: Added syspath call to art exists check --- beetsplug/embedart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/embedart.py b/beetsplug/embedart.py index 4c8b934a6b..49ed479283 100644 --- a/beetsplug/embedart.py +++ b/beetsplug/embedart.py @@ -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