Skip to content

Commit e435ef4

Browse files
committed
Fix one more EX_DATAERR after sync with 3.11.1
1 parent e68ded3 commit e435ef4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lang/lang-check.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ def main():
326326
for translation in polib.pofile(args.po):
327327
status &= check_translation(translation, msgids, args.pot, args.no_warning, args.no_suggest,
328328
args.warn_empty, args.warn_same, args.information)
329-
return 0 if status else os.EX_DATAERR
329+
return 0 if status else 1
330330

331331
if __name__ == "__main__":
332332
exit(main())

0 commit comments

Comments
 (0)