From 26dfe38bb0e4008d13f7b7232da1162fadbf530d Mon Sep 17 00:00:00 2001 From: Jakob Schnitzer Date: Wed, 17 Oct 2012 21:12:31 +0200 Subject: [PATCH] convert: Write tags from library instead of copying them --- beetsplug/convert.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/beetsplug/convert.py b/beetsplug/convert.py index de2fdf10c..f7c57c225 100644 --- a/beetsplug/convert.py +++ b/beetsplug/convert.py @@ -84,9 +84,8 @@ def convert_item(lib, dest_dir): dest_item = library.Item.from_path(dest) else: encode(item.path, dest) - dest_item = library.Item.from_path(item.path) - dest_item.path = dest - dest_item.write() + item.path = dest + item.write() artpath = lib.get_album(item).artpath if artpath and conf['embed']: