As it was going to print the string representation of the error module, not very useful for anyone.
Signed-off-by: Lucas Meneghel Rodrigues <[email protected]> --- client/shared/base_barrier.py | 1 - 1 file changed, 1 deletion(-) diff --git a/client/shared/base_barrier.py b/client/shared/base_barrier.py index 063efd3..6aef542 100644 --- a/client/shared/base_barrier.py +++ b/client/shared/base_barrier.py @@ -181,7 +181,6 @@ class barrier(object): timeout = self._timeout_secs - (time() - self._start_time) if timeout <= 0: errmsg = "timeout waiting for barrier: %s" % self._tag - logging.error(error) raise error.BarrierError(errmsg) else: timeout = self._timeout_secs -- 1.7.10 _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
