mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
Remove Discogs Disambiguation stripping from metadata_plugins
This commit is contained in:
parent
c56cb69e32
commit
23e46315e3
2 changed files with 1 additions and 3 deletions
|
|
@ -298,8 +298,6 @@ class MetadataSourcePlugin(BeetsPlugin, metaclass=abc.ABCMeta):
|
||||||
if not artist_id:
|
if not artist_id:
|
||||||
artist_id = artist[id_key]
|
artist_id = artist[id_key]
|
||||||
name = artist[name_key]
|
name = artist[name_key]
|
||||||
# Strip disambiguation number.
|
|
||||||
name = re.sub(r" \(\d+\)$", "", name)
|
|
||||||
# Move articles to the front.
|
# Move articles to the front.
|
||||||
name = re.sub(r"^(.*?), (a|an|the)$", r"\2 \1", name, flags=re.I)
|
name = re.sub(r"^(.*?), (a|an|the)$", r"\2 \1", name, flags=re.I)
|
||||||
# Use a join keyword if requested and available.
|
# Use a join keyword if requested and available.
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ Bug fixes:
|
||||||
For packagers:
|
For packagers:
|
||||||
|
|
||||||
Other changes:
|
Other changes:
|
||||||
|
- :class:`beets.metadata_plugin.MetadataSourcePlugin`: Remove discogs specific disambiguation stripping
|
||||||
- :doc:`plugins/index`: Clarify that musicbrainz must be mentioned if plugin
|
- :doc:`plugins/index`: Clarify that musicbrainz must be mentioned if plugin
|
||||||
list modified :bug:`6020`
|
list modified :bug:`6020`
|
||||||
- :doc:`/faq`: Add check for musicbrainz plugin if auto-tagger can't find a
|
- :doc:`/faq`: Add check for musicbrainz plugin if auto-tagger can't find a
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue