From b73cfb9f8d6e302dba65343a1923617351118661 Mon Sep 17 00:00:00 2001 From: Lachlan Charlick Date: Mon, 28 Dec 2015 23:53:56 +1030 Subject: [PATCH] fetchart: Fix typo in google API config key --- beetsplug/fetchart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/fetchart.py b/beetsplug/fetchart.py index 9d05b55c4..66273a3df 100644 --- a/beetsplug/fetchart.py +++ b/beetsplug/fetchart.py @@ -165,7 +165,7 @@ class GoogleImages(ArtSource): given an album title and interpreter. """ self._log.debug('fetching art from google...') - api_key = config['fetchart']['google_api_key'].get() + api_key = config['fetchart']['google_API_key'].get() engine_id = config['fetchart']['google_engine_ID'].get() self._log.debug('API Key: ' + api_key) self._log.debug('Engine ID: ' + engine_id)