Skip to content
Snippets Groups Projects
Commit bb255de19b92 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

rsync: fix the command call

`self.check_output` call signature is sightly different from
`subprocess.check_output`, so the call was wrong.
parent 8c6a39535a26
No related branches found
No related tags found
No related merge requests found
...@@ -365,7 +365,7 @@ ...@@ -365,7 +365,7 @@
'{}/'.format(src), '{}/'.format(src),
dst, dst,
] ]
self.check_output(cmd) self.check_output(*cmd)
class ExchangeTimeSuite(BaseExchangeTimeSuite): class ExchangeTimeSuite(BaseExchangeTimeSuite):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment