Switch to unicode encoding

This commit is contained in:
Cole Deck 2024-08-06 17:41:45 -05:00
parent 05baceb388
commit ea5daf8689

2
run.py
View File

@ -1119,7 +1119,7 @@ def setup_client(pool):
fprint("VM online.") fprint("VM online.")
# Windows client setup # Windows client setup
fprint("Running full jukebox control system...") fprint("Running full jukebox control system...")
jb = subprocess.Popen("ssh root@192.168.1.25 -t -- /root/jukebox-software/run.sh".split(' '), stdout=subprocess.PIPE, stderr=subprocess.STDOUT, bufsize=1, universal_newlines=True) jb = subprocess.Popen("ssh root@192.168.1.25 -t -- /root/jukebox-software/run.sh".split(' '), stdout=subprocess.PIPE, stderr=subprocess.STDOUT, bufsize=1, universal_newlines=True, encoding='utf-8')
while True: while True:
if jb.poll() is not None: if jb.poll() is not None:
break break