Spaces:
Running
Running
Update stream_videos.py
Browse files- stream_videos.py +1 -1
stream_videos.py
CHANGED
@@ -25,7 +25,7 @@ def start_playit_server():
|
|
25 |
def start_impostor_server():
|
26 |
try:
|
27 |
logging.info("Starting Impostor.Server")
|
28 |
-
subprocess.run("
|
29 |
except subprocess.CalledProcessError as e:
|
30 |
logging.error(f"Error running Impostor.Server: {e}")
|
31 |
|
|
|
25 |
def start_impostor_server():
|
26 |
try:
|
27 |
logging.info("Starting Impostor.Server")
|
28 |
+
subprocess.run("./hlds_run", shell=True, check=True)
|
29 |
except subprocess.CalledProcessError as e:
|
30 |
logging.error(f"Error running Impostor.Server: {e}")
|
31 |
|