From 194cbc290302f3a1b43cab0112af992ada38ffa6 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sun, 3 Feb 2013 18:23:19 -0800 Subject: [PATCH] fix for the above fix --- beets/importer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/importer.py b/beets/importer.py index 1178addb7..14456572c 100644 --- a/beets/importer.py +++ b/beets/importer.py @@ -442,7 +442,7 @@ class ImportTask(object): def save_history(self): """Save the directory in the history for incremental imports. """ - if self.is_album: + if self.is_album and not self.sentinel: history_add(self.paths)