return a bytestring path from RemoteArtSource

This commit is contained in:
Johnny Robeson 2016-06-12 01:19:39 -04:00
parent 6c969ae58c
commit a76de95183

View file

@ -243,7 +243,7 @@ class RemoteArtSource(ArtSource):
fh.write(chunk)
self._log.debug(u'downloaded art to: {0}',
util.displayable_path(fh.name))
candidate.path = fh.name
candidate.path = util.bytestring_path(fh.name)
return
except (IOError, requests.RequestException, TypeError) as exc: