dont add newline
This commit is contained in:
parent
0fb3d1a65a
commit
2199971ba5
1 changed files with 1 additions and 1 deletions
|
@ -509,7 +509,7 @@ def send_debug():
|
|||
old = False
|
||||
if not old:
|
||||
data.append(line)
|
||||
data = '\n'.join(data)
|
||||
data = ''.join(data)
|
||||
if data:
|
||||
bytes_io = io.BytesIO()
|
||||
gzip_file = gzip.GzipFile(fileobj=bytes_io, mode='wb')
|
||||
|
|
Loading…
Reference in a new issue