summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShwetha K Acharya <sacharya@redhat.com>2020-01-14 10:51:06 +0530
committerRinku Kothiya <rkothiya@redhat.com>2020-01-14 19:48:04 +0000
commit30a89623992bdbe22da72a97efdebdf5271ec293 (patch)
treed7c40da0cc9387e505c728901da07fb86679334a
parent21f1115b2575cfd421224e00a14628c8b6d32ae2 (diff)
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 <sacharya@redhat.com> >(cherry picked from commit d73872e764214f8071c8915536a75bdac1e5e685) fixes: bz#1790846 Change-Id: I1cb12c975142794139456d0f8e99fbdbb03c53a1 Signed-off-by: Sunny Kumar <sunkumar@redhat.com>
-rw-r--r--tools/glusterfind/src/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/glusterfind/src/main.py b/tools/glusterfind/src/main.py
index 551bd925709..4b5466d0114 100644
--- a/tools/glusterfind/src/main.py
+++ b/tools/glusterfind/src/main.py
@@ -516,7 +516,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)