Explorar o código

ensure ret value when a hook has no functions.

Stefano Cossu %!s(int64=2) %!d(string=hai) anos
pai
achega
870246d7c9
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      transliterator/trans.py

+ 1 - 0
transliterator/trans.py

@@ -197,6 +197,7 @@ def transliterate(src, lang, r2s=False):
 
 
 def _run_hook(hname, ctx, hooks):
+    ret = None
     for hook_def in hooks.get(hname, []):
         kwargs = hook_def[1] if len(hook_def > 1) else {}
         ret = hook_def[0](ctx, **kwargs)