diff --git a/beetsplug/discogs.py b/beetsplug/discogs.py index f4ef6d79b..d52c5b1fd 100644 --- a/beetsplug/discogs.py +++ b/beetsplug/discogs.py @@ -72,7 +72,7 @@ class DiscogsPlugin(BeetsPlugin): match = re.search(r'(\d+)\]*$', album_id) if not match: return None - result = Release(match.group()) + result = Release(match.group(1)) # Try to obtain title to verify that we indeed have a valid Release try: getattr(result, 'title')