mirror of
https://github.com/beetbox/beets.git
synced 2026-01-07 16:34:45 +01:00
Fix oldstyle object initializer for py26
This commit is contained in:
parent
1e45ba597d
commit
d0ac66bfe6
1 changed files with 1 additions and 1 deletions
|
|
@ -56,7 +56,7 @@ import _common
|
|||
class LogCapture(logging.Handler):
|
||||
|
||||
def __init__(self):
|
||||
super(LogCapture, self).__init__()
|
||||
logging.Handler.__init__(self)
|
||||
self.messages = []
|
||||
|
||||
def emit(self, record):
|
||||
|
|
|
|||
Loading…
Reference in a new issue