mirror of
https://github.com/beetbox/beets.git
synced 2026-01-18 14:11:35 +01:00
Fix replaygain: add 'log' to __init__ parameters
This commit is contained in:
parent
27eee3829c
commit
0c3675ada0
1 changed files with 3 additions and 2 deletions
|
|
@ -215,8 +215,9 @@ class CommandBackend(Backend):
|
|||
|
||||
# GStreamer-based backend.
|
||||
|
||||
class GStreamerBackend(object):
|
||||
def __init__(self, config):
|
||||
class GStreamerBackend(Backend):
|
||||
def __init__(self, config, log):
|
||||
super(GStreamerBackend, self).__init__(config, log)
|
||||
self._import_gst()
|
||||
|
||||
# Initialized a GStreamer pipeline of the form filesrc ->
|
||||
|
|
|
|||
Loading…
Reference in a new issue