From: W. Trevor King Date: Mon, 19 Aug 2013 00:01:42 +0000 (-0700) Subject: beep.py: Fix tab -> spaces indentation X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f7f429eb6b2b05d9c462b415ae949cc64d4f8081;p=blog.git beep.py: Fix tab -> spaces indentation --- diff --git a/posts/GStreamer/beep.py b/posts/GStreamer/beep.py index 50bb305..0c40e86 100755 --- a/posts/GStreamer/beep.py +++ b/posts/GStreamer/beep.py @@ -15,7 +15,7 @@ class Beep: self.pipeline = gst.Pipeline('mypipeline') self.audiotestsrc = gst.element_factory_make('audiotestsrc', 'audio') - self.audiotestsrc.set_property('freq', frequency) + self.audiotestsrc.set_property('freq', frequency) self.pipeline.add(self.audiotestsrc) self.sink = gst.element_factory_make('alsasink', 'sink')