From a3e32fd410118e9f479cce53bc8e487d7d434b1d Mon Sep 17 00:00:00 2001 From: jean-marie winters Date: Tue, 3 Mar 2015 11:23:45 +0100 Subject: [PATCH] added fatalreplaygainerror --- beetsplug/replaygain.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/beetsplug/replaygain.py b/beetsplug/replaygain.py index dcb98ff3a..39d1f0382 100644 --- a/beetsplug/replaygain.py +++ b/beetsplug/replaygain.py @@ -109,7 +109,9 @@ class Bs1770gainBackend(Backend): call([cmd, self.method]) self.command = cmd except OSError: - pass + raise FatalReplayGainError( + 'Is bs1770gain installed? Is your method in conifg correct?' + ) if not self.command: raise FatalReplayGainError( 'no replaygain command found: install bs1770gain'