Added windows exception.

This commit is contained in:
2025-05-06 22:17:04 +02:00
parent 061da150f9
commit 6312dfae47
+6 -1
View File
@@ -1,6 +1,11 @@
import asyncio import asyncio
import os import os
import pty
try:
import pty
except Exception as ex:
print("You are not able to run a terminal. See error:")
print(ex)
import subprocess import subprocess
commands = { commands = {