Quote path to Python 3 executable in case it contains spaces

GitOrigin-RevId: f9061049c1542579f661c3ec25528439ab9d0588
diff --git a/lit.cfg.py b/lit.cfg.py
index a8d23f3..82e9b80 100644
--- a/lit.cfg.py
+++ b/lit.cfg.py
@@ -99,7 +99,7 @@
 # Produce dexter path, lldb path, and combine into the %dexter substitution
 dexter_path = os.path.join(config.debuginfo_tests_src_root,
                            'dexter', 'dexter.py')
-dexter_cmd = '{} {} test'.format(config.python3_executable, dexter_path)
+dexter_cmd = '"{}" "{}" test'.format(config.python3_executable, dexter_path)
 if lldb_path is not None:
   dexter_cmd += ' --lldb-executable {}'.format(lldb_path)