From 2c49c12166f49f0e3e2736577cc0eeb66863ea12 Mon Sep 17 00:00:00 2001 From: Peter Date: Sun, 9 Jun 2019 15:44:37 +0200 Subject: [PATCH] fixing per review comments --- beetsplug/discogs.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/beetsplug/discogs.py b/beetsplug/discogs.py index ed53d0012..ad170ca0b 100644 --- a/beetsplug/discogs.py +++ b/beetsplug/discogs.py @@ -304,11 +304,9 @@ class DiscogsPlugin(BeetsPlugin): country = result.data.get('country') data_url = result.data.get('uri') style = result.data.get('styles') - print('style', style) if style is None: self._log.debug('Style not Found') - elif not style: - print('s', style) + elif len(style) == 0: return style else: style = self.config['separator'].as_str().join(sorted(style))