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/utils_rtl.py')
-rwxr-xr-xrelease/scripts/modules/bl_i18n_utils/utils_rtl.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/release/scripts/modules/bl_i18n_utils/utils_rtl.py b/release/scripts/modules/bl_i18n_utils/utils_rtl.py
index 2b6a56c5deb..8da1417c468 100755
--- a/release/scripts/modules/bl_i18n_utils/utils_rtl.py
+++ b/release/scripts/modules/bl_i18n_utils/utils_rtl.py
@@ -32,7 +32,6 @@
# \", %s, %x12, %.4f, etc.), protecting them from ugly (evil) fribidi,
# which seems completely unaware of such things (as unicode is...).
-import sys
import ctypes
import re
@@ -89,7 +88,7 @@ def protect_format_seq(msg):
PDF = "\u202C"
LRO = "\u202D"
RLO = "\u202E"
- uctrl = {LRE, RLE, PDF, LRO, RLO}
+ # uctrl = {LRE, RLE, PDF, LRO, RLO}
# Most likely incomplete, but seems to cover current needs.
format_codes = set("tslfd")
digits = set(".0123456789")