From c54105d2721a2e5bbb5d74e61de8fc8469a1dc57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois-Xavier=20Thomas?= Date: Sat, 15 Aug 2015 15:37:47 +0200 Subject: [PATCH] badfiles: Fix unicode error on some queries --- beetsplug/badfiles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/badfiles.py b/beetsplug/badfiles.py index b4fac17af..d27208724 100644 --- a/beetsplug/badfiles.py +++ b/beetsplug/badfiles.py @@ -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.