From a38f61977fb4066361922514f74068b0a46fc8a0 Mon Sep 17 00:00:00 2001 From: Prohurtz <48768484+RedHawk989@users.noreply.github.com> Date: Thu, 9 Nov 2023 09:29:20 -0600 Subject: [PATCH] fix: fix slash --- EyeTrackApp/osc_calibrate_filter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EyeTrackApp/osc_calibrate_filter.py b/EyeTrackApp/osc_calibrate_filter.py index b1ab31e..158f05d 100644 --- a/EyeTrackApp/osc_calibrate_filter.py +++ b/EyeTrackApp/osc_calibrate_filter.py @@ -8,6 +8,7 @@ import struct import threading import os + class TimeoutError(RuntimeError): pass @@ -84,7 +85,7 @@ def center_overlay_calibrate(self): print(os.getcwd()) dirname = os.path.dirname(__file__) - overlay_path = os.path.join(dirname, "Tools/ETVR_SteamVR_Calibration_Overlay.exe") + overlay_path = os.path.join(dirname, "Tools\\ETVR_SteamVR_Calibration_Overlay.exe") os.startfile(overlay_path + " center") # check the file path. sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) server_address = ("localhost", 1234)