From bb4ed5ce39cb2c07bfd97deb46a30b5505bbbf76 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 19 Dec 2018 11:38:20 +1100 Subject: Fix invalid string comparison --- release/scripts/modules/bl_i18n_utils/utils_rtl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'release/scripts/modules') 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: -- cgit v1.2.3