فهرست منبع

Recalculate code points after non-Korean removal.

scossu 1 سال پیش
والد
کامیت
98e2cfb811
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      scriptshifter/hooks/korean/romanizer.py

+ 1 - 0
scriptshifter/hooks/korean/romanizer.py

@@ -290,6 +290,7 @@ def _kor_rom(kor):
             kor = kor[1:]
 
     rom_ls = []
+    cpoints = tuple(ord(c) for c in kor)
     for i in range(len(kor)):
         cp = cpoints[i] - CP_MIN
         ini = "i" + str(cp // 588)