[Bf-blender-cvs] [6af6ef97718] master: Fix invalid string comparison

Campbell Barton noreply at git.blender.org
Wed Dec 19 01:39:37 CET 2018


Commit: 6af6ef977187731d9ed4a6f633611830efdc7441
Author: Campbell Barton
Date:   Wed Dec 19 11:38:20 2018 +1100
Branches: master
https://developer.blender.org/rB6af6ef977187731d9ed4a6f633611830efdc7441

Fix invalid string comparison

===================================================================

M	release/scripts/modules/bl_i18n_utils/utils_rtl.py

===================================================================

diff --git a/release/scripts/modules/bl_i18n_utils/utils_rtl.py b/release/scripts/modules/bl_i18n_utils/utils_rtl.py
index c446182dfc0..433c7f203de 100755
--- a/release/scripts/modules/bl_i18n_utils/utils_rtl.py
+++ b/release/scripts/modules/bl_i18n_utils/utils_rtl.py
@@ -118,7 +118,7 @@ def protect_format_seq(msg):
             dlt = 2
             while (idx + dlt) < ln and msg[idx + dlt] in digits:
                 dlt += 1
-            if (idx + dlt) < ln and msg[idx + dlt] is '|':
+            if (idx + dlt) < ln and msg[idx + dlt] == '|':
                 dlt += 1
         # %.4f
         elif idx < (ln - 3) and msg[idx] == '%' and msg[idx + 1] in digits:



More information about the Bf-blender-cvs mailing list