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:

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to