Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix
python pyttsx3/drivers/_espeak.py
```diff - print(Synth(s)) + print(Synth(s.encode("utf-8"))) ``` Before: % `python pyttsx3/drivers/_espeak.py` ``` ctypes.ArgumentError: argument 1: TypeError: 'str' object cannot be interpreted as ctypes.c_char_p ``` After: eSpeak-NG pronounces the message.
- Loading branch information