# HG changeset patch # User Goffi # Date 1580733763 -3600 # Node ID 7ce31f347ca39a0b6f0d37a4c33084e87f432e26 # Parent f9f05d8ccba6c40b2e4e83925e304db9f45319b5 core (memory/disco): fixed failure creation in infosEb diff -r f9f05d8ccba6 -r 7ce31f347ca3 sat/memory/disco.py --- a/sat/memory/disco.py Wed Jan 29 20:52:23 2020 +0100 +++ b/sat/memory/disco.py Mon Feb 03 13:42:43 2020 +0100 @@ -189,7 +189,7 @@ def infosEb(fail): if fail.check(defer.CancelledError): reason = "request time-out" - fail = failure.Failure(exceptions.TimeOutError(fail.message)) + fail = failure.Failure(exceptions.TimeOutError(str(fail.value))) else: try: reason = str(fail.value)