diff options
Diffstat (limited to 'pytests')
-rwxr-xr-x | pytests/powertest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pytests/powertest.py b/pytests/powertest.py index 2bdf196d2d8..9f05292eecc 100755 --- a/pytests/powertest.py +++ b/pytests/powertest.py @@ -1274,7 +1274,7 @@ def remote_handler(options, operations): LOGGER.info(output) # Rename the rsync_dir only if it has a different name than new_rsync_dir. if ret == 0 and rsync_dir != new_rsync_dir: - LOGGER.info("Renaming directory {} to {}".format(rsync_dir, new_rsync_dir)) + LOGGER.info("Renaming directory %s to %s", rsync_dir, new_rsync_dir) os.rename(rsync_dir, new_rsync_dir) elif operation == "seed_docs": |