summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/send-error-report2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/send-error-report b/scripts/send-error-report
index ff23552b66..15b5e84911 100755
--- a/scripts/send-error-report
+++ b/scripts/send-error-report
@@ -125,7 +125,7 @@ def prepare_data(args):
125 with open(args.error_file, 'r') as json_fp: 125 with open(args.error_file, 'r') as json_fp:
126 data = json_fp.read() 126 data = json_fp.read()
127 127
128 return data 128 return data.encode('utf-8')
129 129
130 130
131def send_data(data, args): 131def send_data(data, args):