mirror of
https://github.com/beetbox/beets.git
synced 2025-12-20 15:43:58 +01:00
parent
aea54e2487
commit
f865fc00cd
2 changed files with 4 additions and 1 deletions
|
|
@ -713,7 +713,7 @@ class AudioToolsBackend(Backend):
|
|||
file format is not supported
|
||||
"""
|
||||
try:
|
||||
audiofile = self._mod_audiotools.open(item.path)
|
||||
audiofile = self._mod_audiotools.open(py3_path(syspath(item.path)))
|
||||
except IOError:
|
||||
raise ReplayGainError(
|
||||
u"File {} was not found".format(item.path)
|
||||
|
|
|
|||
|
|
@ -35,6 +35,9 @@ Fixes:
|
|||
fixing crashes in MPD clients like mpDris2 on seek.
|
||||
The ``playlistid`` command now works properly in its zero-argument form.
|
||||
:bug:`3214`
|
||||
* :doc:`/plugins/replaygain`: Fix a Python 3 incompatibility in the Python
|
||||
Audio Tools backend.
|
||||
:bug:`3305`
|
||||
|
||||
For plugin developers:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue