Explorar el Código

Fix _romanize_nonames call.

scossu hace 1 año
padre
commit
388ab745a5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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