瀏覽代碼

[fix] remove trailing 0x00 from csv output

Adam Tauber 7 年之前
父節點
當前提交
b5071fea6a
共有 1 個檔案被更改,包括 2 行新增0 行删除
  1. 2
    0
      searx/utils.py

+ 2
- 0
searx/utils.py 查看文件

@@ -169,6 +169,8 @@ class UnicodeWriter:
169 169
         data = self.queue.getvalue()
170 170
         if IS_PY2:
171 171
             data = data.decode("utf-8")
172
+        else:
173
+            data = data.strip('\x00')
172 174
         # ... and reencode it into the target encoding
173 175
         data = self.encoder.encode(data)
174 176
         # write to the target stream