mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
Cosmetic fix
This commit is contained in:
parent
345cf6e39b
commit
34c38f41bd
1 changed files with 2 additions and 2 deletions
|
|
@ -563,8 +563,8 @@ class DiscogsPlugin(BeetsPlugin):
|
|||
title = track['title']
|
||||
if self.config['index_tracks']:
|
||||
prefix = ', '.join(divisions)
|
||||
if prefix != '':
|
||||
title = ': '.join([prefix, title])
|
||||
if prefix:
|
||||
title = '{}: {}'.format(prefix, title)
|
||||
track_id = None
|
||||
medium, medium_index, _ = self.get_track_index(track['position'])
|
||||
artist, artist_id = MetadataSourcePlugin.get_artist(
|
||||
|
|
|
|||
Loading…
Reference in a new issue