From b6890eef5cc5e6070210c775c020ba407bc6f311 Mon Sep 17 00:00:00 2001 From: evanchia Date: Mon, 10 May 2021 13:36:05 -0700 Subject: [PATCH] removed debugging text --- .../ly_test_tools/launchers/platforms/win/launcher.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Tools/LyTestTools/ly_test_tools/launchers/platforms/win/launcher.py b/Tools/LyTestTools/ly_test_tools/launchers/platforms/win/launcher.py index 47c24098ed..138d788b9f 100755 --- a/Tools/LyTestTools/ly_test_tools/launchers/platforms/win/launcher.py +++ b/Tools/LyTestTools/ly_test_tools/launchers/platforms/win/launcher.py @@ -205,9 +205,8 @@ class DedicatedWinLauncher(WinLauncher): """ assert self.workspace.project is not None, ( 'Project cannot be NoneType - please specify a project name string.') - return "C:\Program Files\Sublime Text 3\sublime_text.exe" - # return os.path.join(f"{self.workspace.paths.build_directory()}", - # f"{self.workspace.project}.ServerLauncher.exe") + return os.path.join(f"{self.workspace.paths.build_directory()}", + f"{self.workspace.project}.ServerLauncher.exe") class WinEditor(WinLauncher):