On 9/24/2014 12:33 PM, Milson Munakami wrote:
def tearDown(self):
if self.failed:
return
duration = time.time() - self.startTime_
self.cleanup(True)
if self.reportStatus_:
self.log.info("=== Test %s completed normally (%d
sec)", self.name_, duration
The method above doesn't end cleanly (you need to add a close paren to the last line at least)
Emile
def cleanup(self, success):
-- https://mail.python.org/mailman/listinfo/python-list
