[Libreoffice-commits] dev-tools.git: test-bugzilla-files/analyze-logs.py
Markus Mohrhard
markus.mohrhard at googlemail.com
Sat Jun 7 02:52:00 PDT 2014
test-bugzilla-files/analyze-logs.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 874e77ff0cef6f35275f408b433d47ed29e38111
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date: Sat Jun 7 11:46:23 2014 +0200
fix condition for merging different formats
diff --git a/test-bugzilla-files/analyze-logs.py b/test-bugzilla-files/analyze-logs.py
index d675214..89bfb74 100644
--- a/test-bugzilla-files/analyze-logs.py
+++ b/test-bugzilla-files/analyze-logs.py
@@ -61,7 +61,7 @@ def import_csv(filename):
def export_csv(filename, data, reader):
fieldnames = set(data.keys())
if not reader is None:
- fieldnames &= set(reader.fieldnames)
+ fieldnames |= set(reader.fieldnames)
writer = csv.DictWriter(open(filename, "w"), fieldnames)
writer.writeheader()
if not reader is None:
More information about the Libreoffice-commits
mailing list