104
104
if sys.platform == "win32":
107
107
script_path = self._quoted_path(os.path.join(scripts_dir,
109
109
python_exe = self._quoted_path(sys.executable)
110
110
args = self._win_batch_args()
111
111
batch_str = "@%s %s %s" % (python_exe, script_path, args)
113
113
f = file(batch_path, "w")