lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 21 lines 867 B view raw
1diff --git i/beetsplug/badfiles.py w/beetsplug/badfiles.py 2index 36b45de3..5208b696 100644 3--- i/beetsplug/badfiles.py 4+++ w/beetsplug/badfiles.py 5@@ -71,14 +71,14 @@ class BadFiles(BeetsPlugin): 6 return status, errors, [line for line in output.split("\n") if line] 7 8 def check_mp3val(self, path): 9- status, errors, output = self.run_command(["mp3val", path]) 10+ status, errors, output = self.run_command(["@mp3val@/bin/mp3val", path]) 11 if status == 0: 12 output = [line for line in output if line.startswith("WARNING:")] 13 errors = len(output) 14 return status, errors, output 15 16 def check_flac(self, path): 17- return self.run_command(["flac", "-wst", path]) 18+ return self.run_command(["@flac@/bin/flac", "-wst", path]) 19 20 def check_custom(self, command): 21 def checker(path):