From: José Fonseca Date: Mon, 20 Feb 2012 22:18:17 +0000 (+0000) Subject: Add missing commas. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=ae789c4e3919b190e11fb5b1d9164a4ec4bbfb18;p=apitrace Add missing commas. Don't known how I missed this before commiting. --- diff --git a/scripts/tracediff.py b/scripts/tracediff.py index 827293d..7237da0 100755 --- a/scripts/tracediff.py +++ b/scripts/tracediff.py @@ -56,7 +56,7 @@ def stripdump(trace, fifo): '-e', r's/hdc = \w\+/hdc/g', ], stdin = dump.stdout, - stdout = open(fifo, 'wt') + stdout = open(fifo, 'wt'), universal_newlines = True, ) @@ -78,7 +78,7 @@ def diff(traces): '--width=%u' % options.width, '--speed-large-files', ] + fifos, - stdout = subprocess.PIPE + stdout = subprocess.PIPE, universal_newlines = True, )