Browse Source

Fix _romanize_nonames call.

scossu 1 năm trước cách đây
mục cha
commit
388ab745a5
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      scriptshifter/hooks/korean/romanizer.py

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

@@ -45,7 +45,7 @@ logger = logging.getLogger(__name__)
 def s2r_nonames_post_config(ctx):
     """ Romanize a regular string NOT containing personal names. """
     ctx.dest, ctx.warnings = _romanize_nonames(
-            ctx.src, ctx.options["capitalize"])
+            ctx.src, ctx.options)
 
     return BREAK