mirror of
https://github.com/beetbox/beets.git
synced 2026-02-11 18:02:10 +01:00
Merge pull request #3159 from Holzhaus/fix-badfiles-plugin
badfiles: Fix #3158 by calling superclass __init__ method
This commit is contained in:
commit
3973efc25f
1 changed files with 1 additions and 0 deletions
|
|
@ -50,6 +50,7 @@ class CheckerCommandException(Exception):
|
|||
|
||||
class BadFiles(BeetsPlugin):
|
||||
def __init__(self):
|
||||
super(BadFiles, self).__init__()
|
||||
self.verbose = False
|
||||
|
||||
def run_command(self, cmd):
|
||||
|
|
|
|||
Loading…
Reference in a new issue