# HG changeset patch # User morphbr # Date 1179151542 -3600 # Node ID 8bd1033f8bf6eb32218d7dfc5b5a59e7743f3a6b # Parent 17877d6e44e2b5b6bbf12663d806e984fb2d8547 [svn r652] * GMyth-Streamer - Mencoder plugin: fixed coding style diff -r 17877d6e44e2 -r 8bd1033f8bf6 gmyth-stream/server/0.2/plugins/transcoders/mencoder.py --- a/gmyth-stream/server/0.2/plugins/transcoders/mencoder.py Fri May 11 15:03:21 2007 +0100 +++ b/gmyth-stream/server/0.2/plugins/transcoders/mencoder.py Mon May 14 15:05:42 2007 +0100 @@ -252,12 +252,14 @@ opts = [gmyth_cat, "-h", host, "-p", port, "-" + kind, fchan] try: - self.gmyth = subprocess.Popen(opts, stdout=subprocess.PIPE, close_fds=True) + self.gmyth = subprocess.Popen(opts, stdout=subprocess.PIPE, + close_fds=True) except Exception, e: self.log.error("Error executing gmyth-cat: %s" % e) return False - if not self._run_mencoder(input=self.gmyth.stdout, output=subprocess.PIPE): + if not self._run_mencoder(input=self.gmyth.stdout, + output=subprocess.PIPE): return False show_loading = 0