diff options
| author | Dan Halbert <halbert@adafruit.com> | 2019-08-19 11:36:43 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-19 11:36:43 -0400 |
| commit | 308efbeb040239bb34ec9909435eaffdb690361f (patch) | |
| tree | 2d085f6cb9110b49713aa6424b928b5ebc16ca4c /tools | |
| parent | 9343d09321ec8b92cce01827d8be7f71f186236e (diff) | |
| parent | 1a818c60cb5a81ec7504efb76018d3c34c069a8d (diff) | |
Merge pull request #2075 from jepler/nrf-pdm-audioin
nrf: implement audiobusio.PDMIn
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/check_translations.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/check_translations.py b/tools/check_translations.py index 4bea040bf..7c008d3da 100644 --- a/tools/check_translations.py +++ b/tools/check_translations.py @@ -16,8 +16,10 @@ for po_filename in po_filenames: po_file = polib.pofile(po_filename) po_ids = set([x.msgid for x in po_file]) - if all_ids - po_ids: + missing = all_ids - po_ids + if missing: print("Missing message id. Please run `make translate`") + print(missing) sys.exit(-1) else: print("ok") |
