From 1e88b9ea8d9d0c7bb4a69a16a20c87ae69f498bd Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Tue, 11 Oct 2011 10:20:43 -0700 Subject: [PATCH] fix storing of genres after item import --- beetsplug/lastgenre/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/lastgenre/__init__.py b/beetsplug/lastgenre/__init__.py index 03c9982a3..c28ba3ec8 100644 --- a/beetsplug/lastgenre/__init__.py +++ b/beetsplug/lastgenre/__init__.py @@ -110,5 +110,5 @@ def item_imported(lib, item): if genre: log.debug(u'adding last.fm item genre: %s' % genre) item.genre = genre + lib.store(item) lib.save() -