Browse Source

Fix one more EX_DATAERR after sync with 3.11.1

Alex Voinea 1 year ago
parent
commit
e435ef4bab
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lang/lang-check.py

+ 1 - 1
lang/lang-check.py

@@ -326,7 +326,7 @@ def main():
     for translation in polib.pofile(args.po):
         status &= check_translation(translation, msgids, args.pot, args.no_warning, args.no_suggest,
                                     args.warn_empty, args.warn_same, args.information)
-    return 0 if status else os.EX_DATAERR
+    return 0 if status else 1
 
 if __name__ == "__main__":
     exit(main())