# HG changeset patch
# User Pierre-Yves David <pierre-yves.david@octobus.net>
# Date 1534276375 -7200
#      Tue Aug 14 21:52:55 2018 +0200
# Node ID e5aa5852ad995ffaf49087bc52706342502d1eb1
# Parent  4693021e6326fc68b27862d5ed94070580f10fa6
rsync: fix '--inplace' option

The extra "-" is invalid.

diff --git a/benchmarks/basic_commands.py b/benchmarks/basic_commands.py
--- a/benchmarks/basic_commands.py
+++ b/benchmarks/basic_commands.py
@@ -339,7 +339,7 @@
             os.path.basename(self.clone_path)))
         # XXX: This should be deleted at the end but teardown, like setup, is
         # called for each repeat...
-        self.check_output('rsync', '--in-place', '--no-whole-file', '-aH', '--delete', '{}/'.format(self.clone_path),
+        self.check_output('rsync', '--inplace', '--no-whole-file', '-aH', '--delete', '{}/'.format(self.clone_path),
                           self.tmp_clone_path)
         # Wait for everything to be written on disk to avoid Disk IO wait to
         # impact performances metrics
@@ -373,7 +373,7 @@
             os.path.basename(self.clone_path)))
         # XXX: This should be deleted at the end but teardown, like setup, is
         # called for each repeat...
-        self.check_output('rsync', '--in-place', '--no-whole-file', '-aH', '--delete', '{}/'.format(self.clone_path),
+        self.check_output('rsync', '--inplace', '--no-whole-file', '-aH', '--delete', '{}/'.format(self.clone_path),
                           self.tmp_clone_path)
         # Wait for everything to be written on disk to avoid Disk IO wait to
         # impact performances metrics