Просмотр исходного кода

[fix] remove trailing 0x00 from csv output

Adam Tauber 7 лет назад
Родитель
Сommit
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