mirror of
https://github.com/beetbox/beets.git
synced 2025-12-24 01:25:47 +01:00
return a bytestring path from RemoteArtSource
This commit is contained in:
parent
6c969ae58c
commit
a76de95183
1 changed files with 1 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue