Changeset 161

Show
Ignore:
Timestamp:
10/29/07 15:25:19 (1 year ago)
Author:
francois
Message:

Removed check for "known" TTS engine types

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • mobiled/channels/asterisk/ast_fastagi.py

    r160 r161  
    3333        if config.has_option( 'audio', 'tts' ): 
    3434            self.tts = config.get('audio', 'tts').lower() 
    35             if self.tts not in ( 'flite', 'festival', 'espeak' ): 
    36                 # Default to Flite for TTS 
    37                 self.tts = 'Flite' 
    38             else: 
    39                 self.tts = 'Flite' 
     35            #if self.tts not in ( 'flite', 'festival', 'espeak' ): 
     36            #    # Default to Flite for TTS 
     37            #    self.tts = 'Flite' 
     38            #else: 
     39            #    self.tts = 'Flite' 
    4040        if config.has_option( 'outgoing', 'fastagi_port' ): 
    4141            self.basePort = config.getint( 'outgoing', 'fastagi_port' )