Spaces:
Paused
Paused
BinaryONe
commited on
Commit
·
6083e54
1
Parent(s):
a4da194
Changes
Browse files- WebSSH/AppHandler.py +1 -1
WebSSH/AppHandler.py
CHANGED
|
@@ -23,7 +23,7 @@ class AppHandler(tornado.web.RequestHandler):
|
|
| 23 |
if command:
|
| 24 |
try:
|
| 25 |
result = subprocess.run(command, shell=True, capture_output=True, text=True)
|
| 26 |
-
print(f"Result: {result
|
| 27 |
return(result.stdout)
|
| 28 |
except Exception as e:
|
| 29 |
return(str(e))
|
|
|
|
| 23 |
if command:
|
| 24 |
try:
|
| 25 |
result = subprocess.run(command, shell=True, capture_output=True, text=True)
|
| 26 |
+
print(f"Result: {result}")
|
| 27 |
return(result.stdout)
|
| 28 |
except Exception as e:
|
| 29 |
return(str(e))
|