From 3e10d5d39f9f0ab12fa51b5ed6de69ab1bb1ad00 Mon Sep 17 00:00:00 2001 From: Jan Holthuis Date: Thu, 21 Feb 2019 12:40:54 +0100 Subject: [PATCH] badfiles: Fix #3158 by calling superclass __init__ method --- beetsplug/badfiles.py | 1 + 1 file changed, 1 insertion(+) diff --git a/beetsplug/badfiles.py b/beetsplug/badfiles.py index 52caa9994..0be08bae5 100644 --- a/beetsplug/badfiles.py +++ b/beetsplug/badfiles.py @@ -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):