Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--speak/espeak_cmd.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/speak/espeak_cmd.py b/speak/espeak_cmd.py
index 682bfcd..511866c 100644
--- a/speak/espeak_cmd.py
+++ b/speak/espeak_cmd.py
@@ -1,3 +1,5 @@
+# Copyright (C) 2009, Aleksey Lim
+#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
@@ -55,8 +57,8 @@ def voices():
if not m:
continue
language, gender, name, stuff = m.groups()
- if stuff.startswith('mb/') or \
- name in ('en-rhotic','english_rp','english_wmids'):
+ if stuff.startswith('mb/'): #or \
+ #name in ('en-rhotic','english_rp','english_wmids'):
# these voices don't produce sound
continue
out.append((language, name))