From e7b527553822ded5cfd1c49109e6086f3c4b958d Mon Sep 17 00:00:00 2001 From: Sam Doshi Date: Wed, 27 Feb 2013 08:43:32 +0000 Subject: [PATCH] tag_album does not take timid as an argument see SHA: 75d43270e881a7ecf16de4474b5fec54722ebf2e --- beets/importer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/importer.py b/beets/importer.py index 10c66f85f..a5371fabf 100644 --- a/beets/importer.py +++ b/beets/importer.py @@ -643,7 +643,7 @@ def initial_lookup(session): log.debug('Looking up: %s' % displayable_path(task.paths)) task.set_candidates( - *autotag.tag_album(task.items, config['import']['timid'].get(bool)) + *autotag.tag_album(task.items) ) def user_query(session):