diff --git a/beets/ui/commands.py b/beets/ui/commands.py index 0f017d509..3146275a8 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -249,7 +249,7 @@ def show_change(cur_artist, cur_album, items, info, dist, color=True, if item.length and track_info.length and \ abs(item.length - track_info.length) > 2.0: display = True - line += u' (%s -> %s)' % (cur_length, new_length) + line += u' (%s vs. %s)' % (cur_length, new_length) if display: print_(line) for i, track_info in missing_tracks: diff --git a/docs/changelog.rst b/docs/changelog.rst index c619f8338..0a8c43185 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -31,6 +31,9 @@ Changelog the next import, the (external) files would be moved instead of copied. * Artist sort names are now populated correctly for multi-artist tracks and releases. (Previously, they only reflected the first artist.) +* When previewing changes during import, differences in track duration are now + shown as "2:50 vs. 3:10" rather than separated with ``->`` like track numbers. + This should clarify that beets isn't doing anything to modify lengths. * Fix ID3 tag name for the catalog number field. * :doc:`/plugins/chroma`: Fix occasional crash at end of fingerprint submission and give more context to "failed fingerprint generation" errors.