Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Ortiz <rafael@activitycentral.com>2011-07-12 21:55:22 (GMT)
committer Rafael Ortiz <rafael@activitycentral.com>2011-07-12 21:55:22 (GMT)
commitc48c3a44768038fae5e0f47ca7a41f21261ee2a3 (patch)
treec1ae81643e6f63b0a83d1e014d83e5584be9017f
parent34d4e57200c7f3df79fc840cea3d0849af32f1c0 (diff)
avoiding # comments
-rw-r--r--speak/espeak_cmd.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/speak/espeak_cmd.py b/speak/espeak_cmd.py
index 511866c..1e03797 100644
--- a/speak/espeak_cmd.py
+++ b/speak/espeak_cmd.py
@@ -57,9 +57,7 @@ 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'):
- # these voices don't produce sound
+ if stuff.startswith('mb/'):
continue
out.append((language, name))