From ce78f75ce9d2461b145b0190c32b8281a5bd250c Mon Sep 17 00:00:00 2001 From: Adam Tygart Date: Sat, 27 Feb 2021 18:31:16 -0600 Subject: [PATCH] Further attempt to address the comments from sampsyo --- beets/autotag/mb.py | 2 +- docs/changelog.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/beets/autotag/mb.py b/beets/autotag/mb.py index 740f0fcae..3ca5463c2 100644 --- a/beets/autotag/mb.py +++ b/beets/autotag/mb.py @@ -223,7 +223,7 @@ def track_info(recording, index=None, medium=None, medium_index=None, if recording.get('length'): info.length = int(recording['length']) / (1000.0) - info.trackdisambig = recording.get('disambiguation', None) + info.trackdisambig = recording.get('disambiguation') lyricist = [] composer = [] diff --git a/docs/changelog.rst b/docs/changelog.rst index ce1cc6c01..69f64456c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -179,7 +179,7 @@ New features: * Removes usage of the bs1770gain replaygain backend. Thanks to :user:`SamuelCook`. * Added ``trackdisambig`` which stores the recording disambiguation from - musicbrainz for each track. + MusicBrainz for each track. :bug:`1904` Fixes: