diff --git a/beets/mediafile.py b/beets/mediafile.py index d7a4a4e2a..b0fb5d169 100644 --- a/beets/mediafile.py +++ b/beets/mediafile.py @@ -279,8 +279,8 @@ def _sc_encode(gain, peak): def _wider_test_jpeg(data): """Test for a jpeg file following the UNIX file implementation which - uses the magic bytes rather than just looking for the bytes b'JFIF' - or b'EXIF' at a fixed position. + uses the magic bytes rather than just looking for the bytes that + represent'JFIF' or 'EXIF' at a fixed position. """ if data[:2] == b'\xff\xd8': return 'jpeg'