mirror of
https://github.com/beetbox/beets.git
synced 2025-12-28 03:22:39 +01:00
Fix a bytes(s) call in MediaFile
This commit is contained in:
parent
fee33d12a4
commit
eea4c02d54
1 changed files with 1 additions and 1 deletions
|
|
@ -774,7 +774,7 @@ class MP3DescStorageStyle(MP3StorageStyle):
|
|||
# Try creating a new frame.
|
||||
if not found:
|
||||
frame = mutagen.id3.Frames[self.key](
|
||||
desc=bytes(self.description),
|
||||
desc=self.description.encode('utf8'),
|
||||
text=value,
|
||||
encoding=mutagen.id3.Encoding.UTF8,
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue