From dc810f3acbb268b6f5478ed9df6c7a69a6569567 Mon Sep 17 00:00:00 2001 From: Shwetha K Acharya Date: Tue, 14 Jan 2020 10:51:06 +0530 Subject: tools/glusterfind: Remove an extra argument Backport of: > Upstream Patch: https://review.gluster.org/#/c/glusterfs/+/24011/ >fixes: bz#1790748 >Change-Id: I1cb12c975142794139456d0f8e99fbdbb03c53a1 >Signed-off-by: Shwetha K Acharya >(cherry picked from commit d73872e764214f8071c8915536a75bdac1e5e685) fixes: bz#1790850 Change-Id: I1cb12c975142794139456d0f8e99fbdbb03c53a1 Signed-off-by: Sunny Kumar --- tools/glusterfind/src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/glusterfind/src/main.py b/tools/glusterfind/src/main.py index fefe4a39368..e6ba18a85a9 100644 --- a/tools/glusterfind/src/main.py +++ b/tools/glusterfind/src/main.py @@ -515,7 +515,7 @@ def write_output(outfile, outfilemerger, field_separator): continue if row_2_rep and row_2_rep != "": - gfind_write_row(f, row[0], field_separator, p_rep, field_separator, row_2_rep) + gfind_write_row(f, row[0], field_separator, p_rep, row_2_rep) else: gfind_write(f, row[0], field_separator, p_rep) -- cgit