def _python_build(self, targets): try: executor = PythonBuilder(self.error, self.root_dir) return executor.build(targets, self.build_args) except: self.error("Problem executing PythonBuilder for targets %s: %s" % (targets, traceback.format_exc()))
def _python_build(self, targets): try: executor = PythonBuilder(self.run_tracker, self.root_dir) return executor.build( targets, self.build_args, interpreter=self.interpreter, conn_timeout=self.options.conn_timeout) except: self.error("Problem executing PythonBuilder for targets %s: %s" % (targets, traceback.format_exc()))