debian: Just the one Python version now.
[mLib-python] / codec.pyx.in
index ebbb38e..ad60269 100644 (file)
@@ -117,7 +117,7 @@ cdef class %CLASS%Decode:
 
 def %PREFIX%_decode(text, *arg, **kw):
   d = %CLASS%Decode(*arg, **kw)
-  return e.decode(text) + d.done()
+  return d.decode(text) + d.done()
 
 #----- That's all, folks ----------------------------------------------------