Update app.py
Browse files
app.py
CHANGED
|
@@ -33,4 +33,4 @@ def handle_command(command):
|
|
| 33 |
emit('command_output', {'output': str(e)})
|
| 34 |
|
| 35 |
if __name__ == '__main__':
|
| 36 |
-
socketio.run(app, host='0.0.0.0', port=7860)
|
|
|
|
| 33 |
emit('command_output', {'output': str(e)})
|
| 34 |
|
| 35 |
if __name__ == '__main__':
|
| 36 |
+
socketio.run(app, host='0.0.0.0', port=7860, allow_unsafe_werkzeug=True)
|