Skip to content

Commit 893d340

Browse files
torarvidgitster
authored andcommitted
git-p4: Fix one-liner in p4_write_pipe function.
The function built a p4 command string via the p4_build_cmd function, but ignored the result. Signed-off-by: Tor Arvid Lund <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent f135aac commit 893d340

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/fast-import/git-p4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def write_pipe(c, str):
7676

7777
def p4_write_pipe(c, str):
7878
real_cmd = p4_build_cmd(c)
79-
return write_pipe(c, str)
79+
return write_pipe(real_cmd, str)
8080

8181
def read_pipe(c, ignore_error=False):
8282
if verbose:

0 commit comments

Comments
 (0)