Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release/scripts/modules/bl_i18n_utils/import_po_from_branches.py')
-rwxr-xr-xrelease/scripts/modules/bl_i18n_utils/import_po_from_branches.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/release/scripts/modules/bl_i18n_utils/import_po_from_branches.py b/release/scripts/modules/bl_i18n_utils/import_po_from_branches.py
index cbbef17b37d..a15bea9ef0d 100755
--- a/release/scripts/modules/bl_i18n_utils/import_po_from_branches.py
+++ b/release/scripts/modules/bl_i18n_utils/import_po_from_branches.py
@@ -56,12 +56,11 @@ def main():
help="Restrict processed languages to those.")
args = parser.parse_args()
-
ret = 0
- threshold = float(settings.IMPORT_MIN_LEVEL)/100.0
+ threshold = float(settings.IMPORT_MIN_LEVEL) / 100.0
if args.threshold is not None:
- threshold = float(args.threshold)/100.0
+ threshold = float(args.threshold) / 100.0
for lang in os.listdir(BRANCHES_DIR):
if args.langs and lang not in args.langs:
@@ -74,7 +73,7 @@ def main():
trans_msgs = stats["trans_msg"]
lvl = 0.0
if tot_msgs:
- lvl = float(trans_msgs)/float(tot_msgs)
+ lvl = float(trans_msgs) / float(tot_msgs)
if lvl > threshold:
if state["is_broken"] and args.strict:
print("{:<10}: {:>6.1%} done, but BROKEN, skipped." \