Removed unwanted print

This commit is contained in:
Muthukumarasamy BALABASCARIN 2024-04-11 09:55:11 +02:00
parent 5fc2ddb76d
commit 3ed265220e
1 changed files with 0 additions and 1 deletions

View File

@ -84,7 +84,6 @@ def main():
self.end_headers() self.end_headers()
for line in response.iter_lines(): for line in response.iter_lines():
if line: if line:
print(line)
chunk = line.decode('utf-8') + '\r\n' chunk = line.decode('utf-8') + '\r\n'
self.wfile.write(chunk.encode('utf-8')) self.wfile.write(chunk.encode('utf-8'))
self.wfile.flush() self.wfile.flush()