From 89c0e2c8b7eac50b91951f6d88a577efa2c0e68e Mon Sep 17 00:00:00 2001 From: Pedro Silva Date: Sat, 5 Oct 2013 15:55:44 +0200 Subject: [PATCH] Fix issue #403 hack around items needing library and id references since 238e743 --- .gitignore | 1 + beetsplug/missing.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 16d4d3682..6ad10b0c5 100644 --- a/.gitignore +++ b/.gitignore @@ -20,6 +20,7 @@ *~ *.project *.pydevproject +*.ropeproject # Project Specific patterns diff --git a/beetsplug/missing.py b/beetsplug/missing.py index 0b12ebde6..d2776ccbc 100644 --- a/beetsplug/missing.py +++ b/beetsplug/missing.py @@ -153,6 +153,8 @@ class MissingPlugin(BeetsPlugin): else: for item in _missing(album): + item._lib = lib + item.id = '-1' print_obj(item, lib, fmt=fmt) self._command.func = _miss