diff --git a/pyouroboros/notifiers.py b/pyouroboros/notifiers.py index 48ea270..534c1e5 100644 --- a/pyouroboros/notifiers.py +++ b/pyouroboros/notifiers.py @@ -19,7 +19,8 @@ def __init__(self, config, data_manager): language.install() self._ = language.gettext except FileNotFoundError: - self.logger.error("Can't find the '%s' language", self.config.language) + if not self.config.language == 'en': + self.logger.error("Can't find the '%s' language", self.config.language) self._ = gettext.gettext def build_apprise(self):