BarrierTimeoutError must derive from Exception (#4157)

Seen in https://travis-ci.org/LLNL/spack/builds/229484526, very likely
due to a problem in the Travis builder.
This commit is contained in:
Massimiliano Culpo
2017-05-08 07:06:39 +02:00
committed by becker33
parent cf93f49462
commit 85b0ebe836

View File

@@ -92,5 +92,5 @@ def wait(self):
self.turnstile2.release()
class BarrierTimeoutError:
class BarrierTimeoutError(Exception):
pass