Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Ortiz <rafael@activitycentral.com>2012-08-03 00:18:49 (GMT)
committer Rafael Ortiz <rafael@activitycentral.com>2012-08-03 00:18:49 (GMT)
commit6fc1073d2d66d7a04d666057c625745067c71ef7 (patch)
tree8560462082b39e66567fd38f09ce13de0531b172
parentfee14e5dc7d6015975c8da4280faa50b65b8293a (diff)
some pep8 fixes
-rw-r--r--espeak.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/espeak.py b/espeak.py
index e860494..65edad1 100644
--- a/espeak.py
+++ b/espeak.py
@@ -32,6 +32,7 @@ RATE_MAX = 200
GObject.threads_init()
Gst.init(None)
+
class BaseAudioGrab(GObject.GObject):
__gsignals__ = {
'new-buffer': (GObject.SIGNAL_RUN_FIRST,
@@ -118,7 +119,8 @@ class BaseAudioGrab(GObject.GObject):
def _new_buffer(self, buf):
self.emit("new-buffer", buf)
return False
-
+
+
def voices():
out = []
result = subprocess.Popen(["espeak", "--voices"],