Procházet zdrojové kódy

Fix _romanize_nonames call.

scossu před 1 rokem
rodič
revize
388ab745a5
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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