From: Simon Hausmann Date: Wed, 23 May 2007 21:32:32 +0000 (+0200) Subject: Oops, fill the /list/ correct with the p4 exit code. X-Git-Tag: v1.5.3-rc0~65^2^2~67 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ac3e0d79eef4535bb61d79315688fb1d225dea3b;p=git.git Oops, fill the /list/ correct with the p4 exit code. Signed-off-by: Simon Hausmann --- diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index 89a85ebb1..6ae3bc6e5 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -33,7 +33,9 @@ def p4CmdList(cmd): pass exitCode = pipe.close() if exitCode != None: - result["p4ExitCode"] = exitCode + entry = {} + entry["p4ExitCode"] = exitCode + result.append(entry) return result