diff --git a/cython/_pocketsphinx.pyx b/cython/_pocketsphinx.pyx index 15ded624..76bd4959 100644 --- a/cython/_pocketsphinx.pyx +++ b/cython/_pocketsphinx.pyx @@ -1701,7 +1701,7 @@ cdef class Decoder: for word in decoder.get_alignment(): for phone in word: for state in phone: - print(word, phone, state) + print(word.name, phone.name, state.start) That's a lot of code, so it may get simplified, either here or in a derived class, before release.