1voices = engine.getProperty('voices')
2
3voices = engine.getproperty('voices')
4AttributeError: 'Engine' object has no attribute 'getproperty'
5
6 #This was a case sensitive issue make sure that you use the module attributes with the correct
7 #capitilisation, since python is case sensitive.
8