From 1a7ec6dc7976ec13f226da7f7626fcc2c8829977 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sun, 3 Mar 2013 17:46:16 -0800 Subject: [PATCH] mbsync: fix redundant album art movement Since we explicitly move album art later in the process, implicitly moving it with items can cause a double-move (and thus a "file not found" error). --- beetsplug/mbsync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/mbsync.py b/beetsplug/mbsync.py index e8fdf6c7a..97ecee3ae 100644 --- a/beetsplug/mbsync.py +++ b/beetsplug/mbsync.py @@ -44,7 +44,7 @@ def _print_and_apply_changes(lib, item, move, pretend, write): if not pretend: # Move the item if it's in the library. if move and lib.directory in util.ancestry(item.path): - lib.move(item) + lib.move(item, with_album=False) if write: item.write()