Ramesh-vani commited on
Commit
087bfde
·
verified ·
1 Parent(s): 406ea85

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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-data",
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-data",
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-data",
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))