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):
('skip_count', skip_count),
('duration', duration),
('date', date),
('command', binarize_args(command)),
('stdout', binarize_args(stdout)),
('stderr', binarize_args(stderr)),
('html_test_result', binarize_args(html_test_result)),
('command', command),
('stdout', stdout),
('stderr', stderr),
('html_test_result', html_test_result),
) if x[1] is not None)
if 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