ProjectController.py
changeset 2418 5587c490a070
parent 2416 1ca207782dde
child 2429 15f18dc8b56a
child 2432 dbc065a2f7a5
equal deleted inserted replaced
2417:316ee9fff395 2418:5587c490a070
   797             # Invoke compiler.
   797             # Invoke compiler.
   798             # Output files are listed to stdout, errors to stderr
   798             # Output files are listed to stdout, errors to stderr
   799             status, result, err_result = ProcessLogger(self.logger, buildcmd,
   799             status, result, err_result = ProcessLogger(self.logger, buildcmd,
   800                                                        no_stdout=True,
   800                                                        no_stdout=True,
   801                                                        no_stderr=True).spin()
   801                                                        no_stderr=True).spin()
   802         except Exception, e:
   802         except Exception as e:
   803             self.logger.write_error(buildcmd + "\n")
   803             self.logger.write_error(buildcmd + "\n")
   804             self.logger.write_error(repr(e) + "\n")
   804             self.logger.write_error(repr(e) + "\n")
   805             return False
   805             return False
   806 
   806 
   807         if status:
   807         if status: