From f65fedce15aa9eb4b9f1c9b40b4ba89e97c67c7a Mon Sep 17 00:00:00 2001 From: wataru Date: Wed, 19 Apr 2023 08:27:19 +0900 Subject: [PATCH] bugfix: delete colab --- server/MMVCServerSIO.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/MMVCServerSIO.py b/server/MMVCServerSIO.py index 203ed3fb..bb37fb57 100755 --- a/server/MMVCServerSIO.py +++ b/server/MMVCServerSIO.py @@ -189,12 +189,12 @@ if __name__ == '__main__': p.start() try: if sys.platform.startswith('win'): - process = subprocess.Popen([NATIVE_CLIENT_FILE_WIN, "-u", f"http://localhost:{PORT}/{path}"]) + process = subprocess.Popen([NATIVE_CLIENT_FILE_WIN, "-u", f"http://localhost:{PORT}/"]) return_code = process.wait() print("client closed.") p.terminate() elif sys.platform.startswith('darwin'): - process = subprocess.Popen([NATIVE_CLIENT_FILE_MAC, "-u", f"http://localhost:{PORT}/{path}"]) + process = subprocess.Popen([NATIVE_CLIENT_FILE_MAC, "-u", f"http://localhost:{PORT}/"]) return_code = process.wait() print("client closed.") p.terminate()