From ae789c4e3919b190e11fb5b1d9164a4ec4bbfb18 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Mon, 20 Feb 2012 22:18:17 +0000 Subject: [PATCH] Add missing commas. Don't known how I missed this before commiting. --- scripts/tracediff.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, ) -- 2.45.2