From 5924a4db882ee01d9f206a33417f55ec95118b12 Mon Sep 17 00:00:00 2001 From: James Addison Date: Sun, 23 Jul 2023 16:29:45 +0100 Subject: [PATCH] test_intl: add output message when (re)write of .mo file occurs --- tests/test_intl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_intl.py b/tests/test_intl.py index bcb602c819c..939ce563088 100644 --- a/tests/test_intl.py +++ b/tests/test_intl.py @@ -57,6 +57,7 @@ def _setup_intl(app_params): if not mo.exists() or mo.stat().st_mtime < po.stat().st_mtime: # compile .mo file only if needed + print(f'# compiling .mo file {mo}') write_mo(mo, read_po(po))