From b847b73b859eea36d251ab45ac37d1e2ce69d948 Mon Sep 17 00:00:00 2001 From: Remy Date: Thu, 14 Jul 2011 02:09:58 -0700 Subject: [PATCH] Fixed an issue preventing library scan (logging error) --- headphones/itunesimport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headphones/itunesimport.py b/headphones/itunesimport.py index 53e76bc2..e6de812a 100644 --- a/headphones/itunesimport.py +++ b/headphones/itunesimport.py @@ -84,7 +84,7 @@ def importartist(artistlist): artistResults = ws.Query().getArtists(ws.ArtistFilter(string.replace(name, '&', '%38'), limit=1)) for result in artistResults: if result.artist.name == 'Various Artists': - logger.info(u"Top result is Various Artists. Skipping.", logger.WARNING) + logger.info(u"Top result is Various Artists. Skipping.") else: logger.info(u"Found best match: "+result.artist.name+". Gathering album information...") artistid = u.extractUuid(result.artist.id)