Commit 30568738 authored by Łukasz Nowak's avatar Łukasz Nowak

fixup! squash! taskdistribution: Wrap in xmlrpclib.Binary if needed

parent 8ffce0bd
...@@ -183,10 +183,10 @@ class TestResultLineProxy(RPCRetry): ...@@ -183,10 +183,10 @@ class TestResultLineProxy(RPCRetry):
('skip_count', skip_count), ('skip_count', skip_count),
('duration', duration), ('duration', duration),
('date', date), ('date', date),
('command', binarize_args(command)), ('command', command),
('stdout', binarize_args(stdout)), ('stdout', stdout),
('stderr', binarize_args(stderr)), ('stderr', stderr),
('html_test_result', binarize_args(html_test_result)), ('html_test_result', html_test_result),
) if x[1] is not None) ) if x[1] is not None)
if kw: if kw:
self._logger.info('Extra parameters provided: %r', kw) self._logger.info('Extra parameters provided: %r', kw)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment