From 8bd0633496da9038e020493cafadc333245ff02d Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Mon, 2 Mar 2015 11:30:14 -0800 Subject: [PATCH] replaygain: Fix `super` call in AudioTools Fix #1342. --- beetsplug/replaygain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/replaygain.py b/beetsplug/replaygain.py index ce41cad57..378e9466e 100644 --- a/beetsplug/replaygain.py +++ b/beetsplug/replaygain.py @@ -471,7 +471,7 @@ class AudioToolsBackend(Backend): file formats and compute ReplayGain values using it replaygain module. """ def __init__(self, config, log): - super(CommandBackend, self).__init__(config, log) + super(AudioToolsBackend, self).__init__(config, log) self._import_audiotools() def _import_audiotools(self):