[Libreoffice-commits] dev-tools.git: scripts/qawrangler-stats.py
Thorsten Behrens
Thorsten.Behrens at CIB.de
Sun Feb 7 00:27:16 UTC 2016
scripts/qawrangler-stats.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 496f22b0c6b9b774ae678f1d69a2cb422267a2a1
Author: Thorsten Behrens <Thorsten.Behrens at CIB.de>
Date: Sun Feb 7 01:20:14 2016 +0100
Make decode actually work on email archive
diff --git a/scripts/qawrangler-stats.py b/scripts/qawrangler-stats.py
index 8b1c52f..87b123a 100755
--- a/scripts/qawrangler-stats.py
+++ b/scripts/qawrangler-stats.py
@@ -66,7 +66,7 @@ def get_data(url):
sys.exit(1)
else:
with gzip.GzipFile(fileobj=BytesIO(resp.read())) as f:
- return f.read().decode('us-ascii')
+ return f.read().decode('utf-8')
def get_entity_values(data, pattern, num):
"""Returns the first @num matches of a @pattern in the @data string. If
More information about the Libreoffice-commits
mailing list