diff --git a/fsl/utils/status.py b/fsl/utils/status.py index 54b6ce6e4710eca9f8d6ac9327985a50422cf27a..5a5c1e6f082dae5da889b9ddbd71e192bf9b444b 100644 --- a/fsl/utils/status.py +++ b/fsl/utils/status.py @@ -150,25 +150,24 @@ class ClearThread(threading.Thread): (via a call to :func:`clearStatus`). """ - # http://bugs.python.org/issue14623 - # - # When the main thread exits, daemon threads will - # continue to run after the threading module is - # destroyed. Calls to the Event methods can thus - # result in errors. - try: - - while True: - - self.__vetoEvent .clear() - self.__clearEvent.wait() - self.__clearEvent.clear() - + while True: + + self.__vetoEvent .clear() + self.__clearEvent.wait() + self.__clearEvent.clear() + + # http://bugs.python.org/issue14623 + # + # When the main thread exits, daemon threads will + # continue to run after the threading module is + # destroyed. Calls to the Event methods can thus + # result in errors. + try: if not self.__clearEvent.wait(self.__timeout) and \ not self.__vetoEvent.isSet(): log.debug('Timeout - clearing status') clearStatus() - - except: - pass + + except TypeError: + return