Fix outdated systemd related exception text.

This commit is contained in:
Achmad Fathoni 2023-02-20 16:30:23 +07:00
parent 4f794aae61
commit 789c867c8f
2 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ def setup_logging(config: Config) -> None:
try:
from cysystemd.journal import JournaldLogHandler
except ImportError:
raise OperationalException("You need the systemd python package be installed in "
raise OperationalException("You need the cysystemd python package be installed in "
"order to use logging to journald.")
handler_jd = get_existing_handlers(JournaldLogHandler)
if handler_jd:

View File

@ -719,7 +719,7 @@ def test_set_loggers_journald_importerror(import_fails):
'logfile': 'journald',
}
with pytest.raises(OperationalException,
match=r'You need the systemd python package.*'):
match=r'You need the cysystemd python package.*'):
setup_logging(config)
logger.handlers = orig_handlers