mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
Fix issue #403
hack around items needing library and id references since 238e743
This commit is contained in:
parent
3420a36a78
commit
89c0e2c8b7
2 changed files with 3 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -20,6 +20,7 @@
|
|||
*~
|
||||
*.project
|
||||
*.pydevproject
|
||||
*.ropeproject
|
||||
|
||||
# Project Specific patterns
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue