浏览代码

Fix 1÷3 digit numerals.

scossu 1 年之前
父节点
当前提交
45935bc055
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      scriptshifter/hooks/greek/__init__.py

+ 3 - 3
scriptshifter/hooks/greek/__init__.py

@@ -123,14 +123,14 @@ def parse_numeral(ctx):
             cur = ctx.cur - i
             if cur >= 0:
                 num_tk = ctx.src[cur]  # Number to be parsed
-                if ctx.src[-i] in DIGITS[i]:
+                if ctx.src[cur] in DIGITS[i]:
                     # Not yet reached word boundary.
                     ctx.dest_ls[-i] = str(DIGITS[i][num_tk])
                 else:
-                    if ctx.src[-i] != " ":  # Word boundary.
+                    if ctx.src[cur] != " ":  # Word boundary.
                         # Something's wrong.
                         ctx.warnings.append(
-                                f"Character `{ctx.src[-i] }` at position "
+                                f"Character `{ctx.src[cur] }` at position "
                                 f"{cur} is not a valid digit character "
                                 f"at place #{4 - i} in a numeral.")