You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ifself.background:
print("Starting new cloud server in background at {}:{}".format(self.host, self.port))
self._process=Popen(args, stdout=PIPE, stderr=PIPE, env=env)
else:
print("Starting new cloud server with prompt console at {}:{}".format(self.host, self.port))
args[0] =compas._os.select_python('python')
args=" ".join(args)
os.system('start '+args)
in the else part the call to os.system('start python ...') fails because start is not recognised as command...
The text was updated successfully, but these errors were encountered:
in the
else
part the call toos.system('start python ...')
fails becausestart
is not recognised as command...The text was updated successfully, but these errors were encountered: