From a0339d981415521b3e34506dd2d836ac469c3c49 Mon Sep 17 00:00:00 2001 From: Bas Stottelaar Date: Thu, 10 Apr 2014 01:23:09 +0200 Subject: [PATCH] Forgot a parenthesis --- headphones/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headphones/helpers.py b/headphones/helpers.py index a90018cf..7de2ad36 100644 --- a/headphones/helpers.py +++ b/headphones/helpers.py @@ -417,7 +417,7 @@ def extract_metadata(f): if len(artists) > 1 and len(albums) == 1: split_artists = [ RE_FEATURING.split(artist) for artist in artists ] featurings = [ len(split_artist) - 1 for split_artist in split_artists ] - logger.info("Album seem to feature %d different artists", sum(featurings) + logger.info("Album seem to feature %d different artists", sum(featurings)) if sum(featurings) > 0: # Find the artist of which the least splits have been generated.