فهرست منبع

Fix _romanize_nonames call.

scossu 1 سال پیش
والد
کامیت
388ab745a5
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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