1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 23:14:49 +08:00

Remove catch that was causing linux ctrl+c issues

This was for hiding an error on Windows, but it isn't required
This commit is contained in:
pythongosssss
2023-02-13 20:12:12 +00:00
committed by GitHub
parent 8e51af6786
commit 68a1ac7746

View File

@@ -532,9 +532,5 @@ if __name__ == "__main__":
except:
pass
try:
loop.run_until_complete(run(q, socket_handler, address=address, port=port))
except KeyboardInterrupt:
pass
loop.run_until_complete(run(q, socket_handler, address=address, port=port))