Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -297,7 +297,7 @@ async def read_process_output(process, websocket):
|
|
297 |
"type": "terminal-data",
|
298 |
"data": word.decode('utf-8'),
|
299 |
}
|
300 |
-
print('sending data')
|
301 |
await websocket.send(json.dumps(event))
|
302 |
word = b''
|
303 |
print("line is completed")
|
@@ -313,7 +313,7 @@ async def read_process_output(process, websocket):
|
|
313 |
"type": "terminal-data",
|
314 |
"data": word.decode('utf-8'),
|
315 |
}
|
316 |
-
print('sending data')
|
317 |
await websocket.send(json.dumps(event))
|
318 |
word = b''
|
319 |
print("space is occurred")
|
@@ -321,7 +321,7 @@ async def read_process_output(process, websocket):
|
|
321 |
"type": "terminal-data",
|
322 |
"data": " ",
|
323 |
}
|
324 |
-
print('sending data')
|
325 |
await websocket.send(json.dumps(event))
|
326 |
elif char == b'':
|
327 |
if word:
|
@@ -330,7 +330,7 @@ async def read_process_output(process, websocket):
|
|
330 |
"type": "terminal-data",
|
331 |
"data": word.decode('utf-8'),
|
332 |
}
|
333 |
-
print('sending data')
|
334 |
await websocket.send(json.dumps(event))
|
335 |
break
|
336 |
else:
|
|
|
297 |
"type": "terminal-data",
|
298 |
"data": word.decode('utf-8'),
|
299 |
}
|
300 |
+
print('sending data',1)
|
301 |
await websocket.send(json.dumps(event))
|
302 |
word = b''
|
303 |
print("line is completed")
|
|
|
313 |
"type": "terminal-data",
|
314 |
"data": word.decode('utf-8'),
|
315 |
}
|
316 |
+
print('sending data',2)
|
317 |
await websocket.send(json.dumps(event))
|
318 |
word = b''
|
319 |
print("space is occurred")
|
|
|
321 |
"type": "terminal-data",
|
322 |
"data": " ",
|
323 |
}
|
324 |
+
print('sending data',3)
|
325 |
await websocket.send(json.dumps(event))
|
326 |
elif char == b'':
|
327 |
if word:
|
|
|
330 |
"type": "terminal-data",
|
331 |
"data": word.decode('utf-8'),
|
332 |
}
|
333 |
+
print('sending data',4)
|
334 |
await websocket.send(json.dumps(event))
|
335 |
break
|
336 |
else:
|