diff --git a/binding/python/_koala.py b/binding/python/_koala.py index e3f9fe1..1287327 100644 --- a/binding/python/_koala.py +++ b/binding/python/_koala.py @@ -290,7 +290,7 @@ def _get_error_stack(self) -> Sequence[str]: message_stack_depth = c_int() status = self._get_error_stack_func(byref(message_stack_ref), byref(message_stack_depth)) if status is not self.PicovoiceStatuses.SUCCESS: - raise self._PICOVOICE_STATUS_TO_EXCEPTION[status](message='Unable to get Porcupine error state') + raise self._PICOVOICE_STATUS_TO_EXCEPTION[status](message='Unable to get Koala error state') message_stack = list() for i in range(message_stack_depth.value):