From f879d99a354fec8d2d67ff12cb32f926db52eb56 Mon Sep 17 00:00:00 2001 From: Thomas Rast Date: Thu, 12 Feb 2009 21:10:01 +0100 Subject: [PATCH] More python 2.5 compat --- blobtracker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blobtracker.py b/blobtracker.py index 590ebdb..8c7d99e 100755 --- a/blobtracker.py +++ b/blobtracker.py @@ -51,7 +51,7 @@ class BlobTracker(object): args = refs + ['--not'] + [b.sha1 for b in boundaries] patch_ids = {} print 'log -p | patch-id ...' - pipe = git('log', '-p', '--no-merges', *args, ret_pipe=True) + pipe = git('log', '-p', '--no-merges', *args, **{'ret_pipe':True}) for line in git('patch-id', input_pipe=pipe, ret_pipe=True): patch_id, commit_sha1 = line.split() patch_ids[commit_sha1] = patch_id -- 2.11.4.GIT