Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -344,7 +344,7 @@ async def read_process_output(process, websocket):
|
|
344 |
if word:
|
345 |
print(word.decode('utf-8'))
|
346 |
event = {
|
347 |
-
"type": "terminal-
|
348 |
"data": word.decode('utf-8'),
|
349 |
}
|
350 |
await websocket.send(json.dumps(event))
|
@@ -359,14 +359,14 @@ async def read_process_output(process, websocket):
|
|
359 |
if word:
|
360 |
print(word.decode('utf-8'))
|
361 |
event = {
|
362 |
-
"type": "terminal-
|
363 |
"data": word.decode('utf-8'),
|
364 |
}
|
365 |
await websocket.send(json.dumps(event))
|
366 |
word = b''
|
367 |
print("space is occurred")
|
368 |
event = {
|
369 |
-
"type": "terminal-
|
370 |
"data": " ",
|
371 |
}
|
372 |
await websocket.send(json.dumps(event))
|
|
|
344 |
if word:
|
345 |
print(word.decode('utf-8'))
|
346 |
event = {
|
347 |
+
"type": "terminal-error",
|
348 |
"data": word.decode('utf-8'),
|
349 |
}
|
350 |
await websocket.send(json.dumps(event))
|
|
|
359 |
if word:
|
360 |
print(word.decode('utf-8'))
|
361 |
event = {
|
362 |
+
"type": "terminal-error",
|
363 |
"data": word.decode('utf-8'),
|
364 |
}
|
365 |
await websocket.send(json.dumps(event))
|
366 |
word = b''
|
367 |
print("space is occurred")
|
368 |
event = {
|
369 |
+
"type": "terminal-error",
|
370 |
"data": " ",
|
371 |
}
|
372 |
await websocket.send(json.dumps(event))
|