From c62b1355f1f808d0bf3e1263af065dea0fd71b7d Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Wed, 21 Jul 2010 10:30:23 -0700 Subject: [PATCH] don't fetch art when importing as-is --- beets/ui/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index 8b5fa4d29..b118b6411 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -232,7 +232,7 @@ def tag_album(items, lib, copy=True, write=True, logfile=None, art=True): albuminfo = lib.add_album(items) # Get album art if requested. - if art: + if art and info is not CHOICE_ASIS: artpath = beets.autotag.art.art_for_album(info) if artpath: albuminfo.set_art(artpath)