mirror of
https://github.com/beetbox/beets.git
synced 2026-02-23 07:44:38 +01:00
badfiles: Fix unicode error on some queries
This commit is contained in:
parent
6095914d30
commit
c54105d272
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ class BadFiles(BeetsPlugin):
|
|||
return self.check_flac
|
||||
|
||||
def check_bad(self, lib, opts, args):
|
||||
for item in lib.items(args):
|
||||
for item in lib.items(ui.decargs(args)):
|
||||
|
||||
# First, check whether the path exists. If not, the user
|
||||
# should probably run `beet update` to cleanup your library.
|
||||
|
|
|
|||
Loading…
Reference in a new issue