From 358c60e43bcf5c5bbc80afb05b0f47e430c50682 Mon Sep 17 00:00:00 2001 From: Johnny Robeson Date: Mon, 30 May 2016 01:58:05 -0400 Subject: [PATCH] reword a comment in mediafile --- beets/mediafile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'