changeset 64879 | 58525e7f721f |
parent 56427 | 5cbaf18d0dfb |
child 64881 | 9eff4c62579a |
--- a/Admin/lib/scripts/churn_pie Wed Jan 11 20:15:17 2017 +0100 +++ b/Admin/lib/scripts/churn_pie Wed Jan 11 21:32:46 2017 +0100 @@ -11,7 +11,7 @@ data = [] for line in sys.stdin.readlines(): - match = re_entry.match(line) + match = re_entry.match(unicode(line, 'utf-8')) data.append((match.group(1), int(match.group(2)))) plot = pie_plot.T(data = data, arc_offsets = [],