Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ksyeo1010 committed Oct 31, 2023
1 parent cbdd04f commit e3bbfcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binding/python/_koala.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit e3bbfcf

Please sign in to comment.