mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
badfiles: Fix #3158 by calling superclass __init__ method
This commit is contained in:
parent
be118b922a
commit
3e10d5d39f
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