|
|
17b94a |
From 6c06ac0571fb6bf0734b173cc3a75badc7554601 Mon Sep 17 00:00:00 2001
|
|
|
17b94a |
From: Shwetha K Acharya <sacharya@redhat.com>
|
|
|
17b94a |
Date: Tue, 14 Jan 2020 10:51:06 +0530
|
|
|
17b94a |
Subject: [PATCH 350/350] tools/glusterfind: Remove an extra argument
|
|
|
17b94a |
|
|
|
17b94a |
Backport of:
|
|
|
17b94a |
> Upstream Patch: https://review.gluster.org/#/c/glusterfs/+/24011/
|
|
|
17b94a |
> fixes: bz#1790748
|
|
|
17b94a |
> Change-Id: I1cb12c975142794139456d0f8e99fbdbb03c53a1
|
|
|
17b94a |
> Signed-off-by: Shwetha K Acharya <sacharya@redhat.com>
|
|
|
17b94a |
|
|
|
17b94a |
Change-Id: I1cb12c975142794139456d0f8e99fbdbb03c53a1
|
|
|
17b94a |
BUG: 1789447
|
|
|
17b94a |
Signed-off-by: Sunny Kumar <sunkumar@redhat.com>
|
|
|
17b94a |
Reviewed-on: https://code.engineering.redhat.com/gerrit/189363
|
|
|
17b94a |
Tested-by: RHGS Build Bot <nigelb@redhat.com>
|
|
|
17b94a |
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
|
|
|
17b94a |
---
|
|
|
17b94a |
tools/glusterfind/src/main.py | 2 +-
|
|
|
17b94a |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
17b94a |
|
|
|
17b94a |
diff --git a/tools/glusterfind/src/main.py b/tools/glusterfind/src/main.py
|
|
|
17b94a |
index dfc9d07..5ca1fec 100644
|
|
|
17b94a |
--- a/tools/glusterfind/src/main.py
|
|
|
17b94a |
+++ b/tools/glusterfind/src/main.py
|
|
|
17b94a |
@@ -515,7 +515,7 @@ def write_output(outfile, outfilemerger, field_separator):
|
|
|
17b94a |
continue
|
|
|
17b94a |
|
|
|
17b94a |
if row_2_rep and row_2_rep != "":
|
|
|
17b94a |
- gfind_write_row(f, row[0], field_separator, p_rep, field_separator, row_2_rep)
|
|
|
17b94a |
+ gfind_write_row(f, row[0], field_separator, p_rep, row_2_rep)
|
|
|
17b94a |
|
|
|
17b94a |
else:
|
|
|
17b94a |
gfind_write(f, row[0], field_separator, p_rep)
|
|
|
17b94a |
--
|
|
|
17b94a |
1.8.3.1
|
|
|
17b94a |
|